Fill out a one-dimensional table to include a specified range of values
Source:R/03-fullTable.R
fullTable.Rd
Fill out a one-dimensional table to include a specified range of values
Examples
xTable <- fullTable(x = sample(x = 5,
size = 100,
replace = TRUE),
values = 1:5)
xTable
#> 1 2 3 4 5
#> 19 16 18 21 26