| topline | R Documentation | 
topline returns a tibble containing a weighted topline of one variable
topline(
  df,
  variable,
  weight,
  remove = c(""),
  n = TRUE,
  pct = TRUE,
  valid_pct = TRUE,
  cum_pct = TRUE
)
| df | The data source | 
| variable | the variable name | 
| weight | The weighting variable, defaults to zwave_weight | 
| remove | An optional character vector of values to remove from final table (e.g. "refused"). This will not affect any calculations made. The vector is not case-sensitive. | 
| n | logical, if TRUE a frequency column is included percentages, but in a separate row for column percentages. | 
| pct | logical, if TRUE a column of percents is included | 
| valid_pct | logical, if TRUE a column of valid percents is included | 
| cum_pct | logical, if TRUE a column of cumulative percents is included | 
By default the table includes a column for frequency count, percent, valid percent, and cumulative percent.
a tibble
topline(illinois, sex, weight)
topline(illinois, sex, weight, pct = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.