type_lm | R Documentation |
Type function for plotting a linear model fit.
Arguments are passed to lm
.
type_lm(se = TRUE, level = 0.95)
se |
logical. If TRUE, confidence intervals are drawn. |
level |
the confidence level required. |
# "lm" type convenience string
tinyplot(Sepal.Width ~ Petal.Width, data = iris, type = "lm")
# Grouped model fits (here: illustrating an example of Simpson's paradox)
tinyplot(Sepal.Width ~ Petal.Width | Species, data = iris, type = "lm")
tinyplot_add(type = "p")
# Use `type_lm()` to pass extra arguments for customization
tinyplot(Sepal.Width ~ Petal.Width, data = iris, type = type_lm(level = 0.8))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.