LinRegInteractive-package {LinRegInteractive}R Documentation

Interactive Interpretation of Linear Regression Models

Description

The implementation is based on the package rpanel and provides an interactive visualization of effects, response functions and marginal effects for different kinds of regression models. Major features are the interactive approach and the handling of the effects of categorical covariates: if two or more factors are used as covariates every combination of the levels of each factor (referred to as groups) is treated separately. The automatic calculation of marginal effects and a number of possibilities to customize the graphical output are useful features as well. In the accompanying vignette the usage is described in detail. Please refer to the documentation of the generic function fxInteractive for available methods.

Details

Package: LinRegInteractive
Type: Package
Version: 0.3-3
Date: 2020-02-08
License: GPL-2

Author(s)

Martin Meermeyer m.meermeyer@gmail.com

References

Bowman, A., Crawford, E., Alexander, G., and Bowman, R. (2007). rpanel: Simple interactive controls for R functions using the tcltk package. Journal of Statistical Software, 17(9), 1-18.

See Also

The noninteractive visualization of the results for various types of regression models can be achieved with the package effects.

Examples

## Not run: 
### Metric dependent variable ###
data("munichrent03")
model.rent <- lm(rent ~ yearc + I(yearc^2) + rooms + area*location + upkitchen,
    data=munichrent03)
fxInteractive(model.rent)

### Binary dependent variable ###
data("creditdata")
model.cd <- glm(credit ~ amount + I(amount^2) + age + duration*teleph + housing,
    family=binomial, data=creditdata)
fxInteractive(model.cd)

## End(Not run)

[Package LinRegInteractive version 0.3-3 Index]