tablePattern: Creates skeleton for frequency tables with desired values

View source: R/tablePattern.r

tablePatternR Documentation

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"))

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

Value

a frequency table

Author(s)

Sebastian Weirich

Examples

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

weirichs/eatTools documentation built on April 3, 2024, 6:11 p.m.