make_n_and_percent_table {crimeutils} | R Documentation |
Make a table showing the number (n) and percent of the population (e.g. % of nrow()) for each value in a variable(s).
Description
Make a table showing the number (n) and percent of the population (e.g. % of nrow()) for each value in a variable(s).
Usage
make_n_and_percent_table(data, columns)
Arguments
data |
A data.frame with the data you want to make the table from. |
columns |
A string or vector of strings with the column names to make the N and % from. |
Value
A data.frame with one row for each value in the inputted variable(s) and columns showing the N and % for that value.
Examples
make_n_and_percent_table(mtcars, c("cyl", "gear"))
[Package crimeutils version 0.5.1 Index]