Learn R Programming

groupedstats (version 0.0.6)

grouped_robustslr: Function to run robust simple linear regression (slr) on multiple variables across multiple grouping variables.

Description

Function to run robust simple linear regression (slr) on multiple variables across multiple grouping variables.

Usage

grouped_robustslr(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 regression (y in y ~ x).

indep.vars

List predictor or independent variables for regression (x in y ~ x).

grouping.vars

List of grouping variables.

Value

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

Examples

Run this code
# NOT RUN {
# in case of just one grouping variable
groupedstats::grouped_robustslr(
  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