Learn R Programming

see (version 0.10.0)

plot.see_compare_performance: Plot method for comparing model performances

Description

The plot() method for the performance::compare_performance() function.

Usage

# S3 method for see_compare_performance
plot(x, linewidth = 1, ...)

Value

A ggplot2-object.

Arguments

x

An object.

linewidth

Numeric value specifying size of line geoms.

...

Arguments passed to or from other methods.

Examples

Run this code
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)

Run the code above in your browser using DataLab