jointfun_: A minimal function which counts the number of observations by...

Description Usage Arguments Value Examples

View source: R/jointfuns.R

Description

A minimal function which counts the number of observations by groups in a data frame

Usage

1
jointfun_(.data, .variables, ...)

Arguments

.data

data frame to be processed

.variables

variables to split data frame by, as a character vector (c("var1", "var2")).

...

additional function calls to be applied on the .data

Value

a data frame, with a column for each cateogrical variable used, and a row for each combination of all the categorical variables' modalities.

Examples

1
2
3
4
data("invented_wages")
tmp <- jointfun_(.data = invented_wages, .variables = c("gender", "sector"))
tmp
str(tmp)

distrr documentation built on July 14, 2020, 5:06 p.m.