Skip to content

Instantly share code, notes, and snippets.

@statzhero
Created July 28, 2017 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save statzhero/c6f2156d2d4f05178d33a0c892f108f6 to your computer and use it in GitHub Desktop.
Save statzhero/c6f2156d2d4f05178d33a0c892f108f6 to your computer and use it in GitHub Desktop.
table()
prop.table(mytable) # cell percentages
sort(table(x), decreasing = TRUE)
# Show missing data in table as default
table = function (..., useNA = 'ifany') base::table(..., useNA = useNA)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment