Learn R Programming

eatTools (version 0.7.8)

tablePattern: Creates skeleton for frequency tables with desired values

Description

Function takes values and creates a frequency table including these values. Models behavior of factor variables.

Usage

tablePattern (x, pattern = NULL, weights, na.rm = TRUE,
useNA = c("no", "ifany", "always"))

Value

a frequency table

Arguments

x

a vector

pattern

desired values for table output

weights

optional: weights

na.rm

should missing values be removed

useNA

whether to include [NA] values in the table

Author

Sebastian Weirich

Examples

Run this code
grades <- c(1,1,3,4,2,3,4,5,5,3,2,1)
table(grades)
tablePattern(grades, pattern = 1:6)

Run the code above in your browser using DataLab