plot.see_compare_performance {see} | R Documentation |
Plot method for comparing model performances
Description
The plot()
method for the performance::compare_performance()
function.
Usage
## S3 method for class 'see_compare_performance'
plot(x, size_line = 1, ...)
Arguments
x |
An object. |
size_line |
Numeric value specifying size of line geoms. |
... |
Arguments passed to or from other methods. |
Value
A ggplot2-object.
Examples
library(performance)
data(iris)
lm1 <- lm(Sepal.Length ~ Species, data = iris)
lm2 <- lm(Sepal.Length ~ Species + Petal.Length, data = iris)
lm3 <- lm(Sepal.Length ~ Species * Petal.Length, data = iris)
result <- compare_performance(lm1, lm2, lm3)
result
plot(result)
[Package see version 0.8.5 Index]