sum_up: Gives summary statistics (corresponds to Stata command...

View source: R/sum_up.R

sum_upR Documentation

Gives summary statistics (corresponds to Stata command summarize)

Description

Gives summary statistics (corresponds to Stata command summarize)

Usage

sum_up(df, ..., d = FALSE, wt = NULL)

Arguments

df

a data.frame

...

Variables to include. Defaults to all non-grouping variables. See the select documentation.

d

Should detailed summary statistics be printed?

wt

Weights. Default to NULL.

Value

a data.frame

Examples

library(dplyr)
N <- 100
df <- tibble(
  id = 1:N,
  v1 = sample(5, N, TRUE),
  v2 = sample(1e6, N, TRUE)
)
sum_up(df)
sum_up(df, v2, d = TRUE)
sum_up(df, v2, wt = v1)
df %>% group_by(v1) %>% sum_up(starts_with("v"))

matthieugomez/statar documentation built on Aug. 22, 2023, 2:29 a.m.