| tableF | R Documentation | 
Provides in-depth frequency counts and percentages.
tableF(.data, x, n = 20, splitby = NULL)
.data | 
 the data frame containing the variable  | 
x | 
 the bare variable name (not quoted)  | 
n | 
 the number of values shown int he table  | 
splitby | 
 the stratifying variable  | 
a list of class tableF containing the frequency table(s)
## Not run: 
library(furniture)
data <- data.frame(
  x = sample(c(1,2,3,4), 100, replace=TRUE),
  y = rnorm(100)
)
## Basic Use
tableF(data, x)
tableF(data, y)
## Adjust the number of items shown
tableF(data, y, n = 10)
## Add splitby
tableF(data, x, splitby = y)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.