condvis

Conditional Visualisation for
Statistical Models

View on CRAN
View on GitHub


Home page

Getting started

Using condvis

Examples

Getting started

Any usage of condvis starts with a data set and a fitted model in R.

Consider the following linear model relating fuel efficiency (mpg) to the weight of car (wt) and number of cylinders (cyl), using the mtcars data in R.

data(mtcars)
m <- lm(mpg ~ wt + cyl, mtcars)