Learn R Programming

tidytable (version 0.8.0)

n.: Number of observations in each group

Description

Helper function that can be used to find counts by group.

Can be used inside summarize.(), mutate.(), & filter.()

Usage

n.()

Arguments

Examples

Run this code
df <- data.table(
  x = 1:3,
  y = 4:6,
  z = c("a","a","b")
 )

df %>%
  summarize.(count = n.(), .by = z)

# The dplyr version `n()` also works
df %>%
  summarize.(count = n(), .by = z)

Run the code above in your browser using DataLab