powered by
Calculates one or more frequency table(s) from a vector, matrix or data frame.
freq(x,variable.labels=NULL,display.na=TRUE,decr.order=TRUE)
a vector, matrix or data frame.
optional labels for the variables. The default is the name of the variable passed or the names attribute if the variable has more than 1 dimension.
logical - whether to display counts of NAs.
Whether to order each frequency table in decreasing order.
A list with one or more components. Each component includes the values of the relevant variable as the names.
freq calls table to get the frequency counts and builds a list with one or more components containing the value labels and counts.
print.freq
# NOT RUN { A<-sample(1:10,130,TRUE) A[sample(1:130,6)]<-NA C<-sample(LETTERS[1:14],130,TRUE) C[sample(1:130,7)]<-NA test.df<-data.frame(A,C) freq(test.df) # }
Run the code above in your browser using DataLab