Learn R Programming

LSTbook (version 0.6)

add_plot_labels: Convenience function for adding labels to point_plot or others without needing the ggplot2 + pipe.

Description

Convenience function for adding labels to point_plot or others without needing the ggplot2 + pipe.

Usage

add_plot_labels(P, ..., color = NULL)

Value

A ggplot graphics object

Arguments

P

A ggplot2 object, for instance as made with point_plot() or model_plot()

color

Name for color legend (works for point_plot())

...

Label items (e.g. x = "hello") as in ggplot2::labs

Examples

Run this code
mtcars |> point_plot(mpg ~ hp + cyl) |>
  add_plot_labels(x = "The X axis", y = "Vertical", color = "# cylinders")

Run the code above in your browser using DataLab