new_theme {scplot} | R Documentation |
Create a new scplot theme
Description
Create a new scplot theme
Usage
new_theme()
extract_theme(object)
Arguments
object |
An scplot object (class |
Value
An scplot-theme object
An object of class scplot-theme
which can be used with the
set_theme()
function.
Examples
data(exampleABC, package = "scan")
my_theme <- new_theme() |>
set_panel(color = "red") |>
set_base_text(size = 12, color = "blue") |>
set_dataline(color = "darkred", linewidth = 2)
p1 <- scplot(exampleABC) |> set_theme(my_theme)
[Package scplot version 0.4.0 Index]