Learn R Programming

crimeutils (version 0.5.1)

make_n_and_percent_table: 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)

Value

A data.frame with one row for each value in the inputted variable(s) and columns showing the N and % for that value.

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.

Examples

Run this code
make_n_and_percent_table(mtcars, c("cyl", "gear"))

Run the code above in your browser using DataLab