DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Contingency Table & Find Mode Of Dataset.
table() function can build a contingency table by tallying up the data in the columns that contain qualitative fields
type = cars$Type type.freq = table(type)
Relative freq
type.relfreq = type.freq / nrows(cars)





