groupedstats (version 0.1.1)

grouped_slr: Running simple linear regression (slr) on multiple variables across multiple grouping variables.

Description

Running simple linear regression (slr) on multiple variables across multiple grouping variables.

Usage

grouped_slr(data, dep.vars, indep.vars, grouping.vars)

Arguments

data

Dataframe from which variables are to be taken.

dep.vars

List criterion or dependent variables for simple linear model (y in y ~ x).

indep.vars

List predictor or independent variables for simple linear model (x in y ~ x).

grouping.vars

List of grouping variables.

Value

A tibble dataframe with tidy results from simple linear regression analyses. The estimates are standardized, i.e. the lm model used is scale(y) ~ scale(x), and not y ~ x.

See Also

grouped_lm, grouped_tidy

Examples

Run this code
# NOT RUN {
# for reproducibility
set.seed(123)

# in case of just one grouping variable
groupedstats::grouped_slr(
  data = iris,
  dep.vars = c(Sepal.Length, Petal.Length),
  indep.vars = c(Sepal.Width, Petal.Width),
  grouping.vars = Species
)
# }

Run the code above in your browser using DataLab