sample_n_by: Sample n Rows By Group From a Table

View source: R/sample_n_by.R

sample_n_byR Documentation

Sample n Rows By Group From a Table

Description

sample n rows by group from a table using the sample_n() function.

Usage

sample_n_by(data, ..., size = 1, replace = FALSE)

Arguments

data

a data frame

...

Variables to group by

size

the number of rows to select

replace

with or without replacement?

Examples

ToothGrowth %>% sample_n_by(dose, supp, size = 2)

kassambara/rstatix documentation built on Feb. 6, 2023, 3:36 a.m.