fullTable {nipnTK} | R Documentation |
Fill out a one-dimensional table to include a specified range of values
Description
Fill out a one-dimensional table to include a specified range of values
Usage
fullTable(x, values = min(x, na.rm = TRUE):max(x, na.rm = TRUE))
Arguments
x |
A vector to tabulate |
values |
A vector of values to be included in a table. Default is:
|
Value
A table object including zero cells
Examples
# Generate some artificial data and then apply `fullTable()`
set.seed(0)
finalDigits <- sample(x = 0:9, size = 1000, replace = TRUE)
fullTable(finalDigits)
[Package nipnTK version 0.2.0 Index]