oway_tables creates multiple one way tables by creating
a frequency table for each categorical variable in a data frame.
tway_tables creates multiple two way tables by creating a cross
table for each unique pair of categorical variables in a data frame.
Usage
oway_tables(data)
tway_tables(data)
Arguments
data
a data frame
Details
oway_tables is a extension of the freq_table
function. It creates a frequency table for each categorical variable in the
dataframe. tway_tables is a extension of the cross_table
function. It creates a two way table for each unique pair of categorical
variables in the dataframe.