This might be a very lame question, but I cannot really figure out what's going. Normally if I called this function:
summary(VLTcog$per ~ VLTcog$Cognate)
The output that I got was:
VLTcog$per N=90
+--------------+--+--+----------+
| | |N |VLTcog$per|
+--------------+--+--+----------+
|VLTcog$Cognate|C |48|74.42708 |
| |NC|42|56.42857 |
+--------------+--+--+----------+
|Overall | |90|66.02778 |
+--------------+--+--+----------+
Now, if I do the same, the only output it gives me is:
Length Class Mode
3 formula call
str of my data
str(VLTcog)
'data.frame': 90 obs. of 4 variables:
$ Item : Factor w/ 90 levels "1 acquiesce",..: 86 16 30 62 28 53 26 83 51 65 ...
$ Cognate : Factor w/ 2 levels "C","NC": 1 1 1 1 2 1 2 2 1 2 ...
$ Frequency: Factor w/ 5 levels "1","2","3","4",..: 1 1 1 1 1 1 1 1 1 1 ...
$ per : num 100 67.5 95 82.5 87.5 67.5 95 40 87.5 87.5 ...