plot.reportmodel: Coefplot for reportmodel objects

Description Usage Arguments Value Examples

View source: R/report_model.R

Description

Creates a coefplot from the reportmodel object.

Usage

1
2
## S3 method for class 'reportmodel'
plot(x, ...)

Arguments

x

A reportmodel object

...

Further arguments passed to coefplot

Value

Returns a plot of each coefficient in the model with its 95

Examples

1
2
3
4
5
6
lm1 <- lm(Petal.Length ~ Sepal.Width + Species, data=iris)
a<-report(lm1)
oldpar <- par()
par(mar=c(4, 10, 3, 2))
plot(a)   #Coefplot calling plot.reportmodel
par(mar=oldpar$mar)

repmod documentation built on March 22, 2021, 5:08 p.m.