Learn R Programming

packDAMipd (version 1.1.0)

form_expression_lm: Form expression to use with lm()

Description

Form expression to use with lm()

Usage

form_expression_lm(param_to_be_estimated, indep_var, covariates, interaction)

Value

the formula for lm

Arguments

param_to_be_estimated

parameter of interest

indep_var

the independent variable (column name in data file)

covariates

list of covariates

interaction

boolean value to indicate interaction in the case of linear regression, false by default

Details

This function helps to create the expression for liner regression model it takes care of covariates and interaction

Examples

Run this code
formula <- form_expression_lm("gre", indep_var = "gpa", covariates = NA,
interaction = FALSE)

Run the code above in your browser using DataLab