purge.negbin: Purges mediator effects between two independent variables...

Description Usage Arguments Details Value Examples

View source: R/purge.negbin.R

Description

Purges mediator effects between two independent variables, where selection (direct) variable is an event count, and returns new "purged" direct variable to be used in multivariate specification.

Usage

1
purge.negbin(x, "direct", "indirect")

Arguments

x

Represents data frame, though usage requires the data.frame name

direct

Represents "direct", or mediator variable, though usage requires column's name

indirect

Represents "indirect", or mediated variable, though usage requires column's name

Details

Purging of mediator effects between two independent variables in two steps. First, the function regresses the direct (mediator) variable on the indirect (mediated) variable. Second, it stores and uses the residuals from the bivariate specification as the new "purged" variable to be used in place of the original "direct" variable in multivariate analyses. Regarding syntax, the function is built with placeholder objects to calculate the quantities of interest. Then, the usage allows placing the real objects' names from working datasets (including, data frame, direct variable name in quotes, and indirect variable name in quotes) for intuitive usage.

Value

purged

Examples

1
2
df <- data.frame(A = c(1,1,1,1,2,2,3,3,4,5), B = 1:10) # negative binomial/counts example
purge.negbin(df, "A", "B")

purging documentation built on May 2, 2019, 6:41 a.m.