n | R Documentation |
Helper function that can be used to find counts by group.
Can be used inside summarize()
, mutate()
, & filter()
n()
df <- data.table(
x = 1:3,
y = 4:6,
z = c("a","a","b")
)
df %>%
summarize(count = n(), .by = z)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.