This is essentially a wrapper around get_freqs() and prettytable() so you
only have to call this rather than calling both functions. It takes the
get_freqs() output and then makes it pretty using prettytable().
Usage
get_freq_table(
  data,
  x,
  group = NULL,
  wt = NULL,
  drop_zero = FALSE,
  decimals = 3,
  na.rm = TRUE,
  show_genpop = FALSE
)Arguments
- data
 An object of type data.frame or tibble. If piping the data into the function, this is not required.
- x
 Either a character string or symbol. The variable with which want to get the frequencies.
- group
 <
tidy-select> A selection of columns to group the data by in addition totreats. This operates very similarly to.byfrom dplyr (for more info on that see ?dplyr_by).- wt
 Weights. Add if you have a weighting variable and want to get weighted frequencies.
- drop_zero
 Logical. Determines if rows with 0 should be removed Default is
FALSE.- decimals
 Number of decimals each number should be rounded to. Default is 3.
- na.rm
 Logical. Determines if NAs should be kept or removed Default is
TRUE.- show_genpop
 Logical. If the data is grouped, determines if data should should be shown for the general population as well.
FALSE, the default, does not show the results for the general population.TRUEshows the results for the general population in a new column.
