plot.reportmodel | R Documentation |
Creates a coefplot from the reportmodel object.
## S3 method for class 'reportmodel'
plot(x, ...)
x |
A reportmodel object |
... |
Further arguments passed to coefplot |
Returns a plot of each coefficient in the model with its 95
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.