Displaying 1 result from an estimated 1 matches for "votemode2010".
2011 Jan 08
1
summary(list) is awesome, but I want more than summary
...dingly. For example, if I do this:
mydata <- read.table("data.txt")
summary(mydata)
I would get output like this:
> summary(mydata)
County
BERNALILLO:2863
DONA ANA : 772
SANTA FE : 671
SANDOVAL : 579
SAN JUAN : 471
VALENCIA : 281
(Other) :2863
Votemode2010
Min. : 1.000
1st Qu.: 3.000
Median : 4.000
Mean : 3.942
3rd Qu.: 5.000
Max. : 6.000
NA's :11.000
Notice how for the first table the summary simply reports the
frequencies of the qualitative data and in the second table it gives
me a five-number summary for the quantitativ...