forcats (version 0.3.0)

fct_count: Count entries in a factor

Description

Count entries in a factor

Usage

fct_count(f, sort = FALSE)

Arguments

f

A factor (or character vector).

sort

If TRUE, sort the result so that the most common values float to the top.

Value

A tibble with columns f and n.

Examples

Run this code
# NOT RUN {
f <- factor(sample(letters)[rpois(1000, 10)])
table(f)
fct_count(f)
fct_count(f, sort = TRUE)
# }

Run the code above in your browser using DataCamp Workspace