diff --git a/R/gg_density.R b/R/gg_density.R index ce56647eb..37c44f9ce 100644 --- a/R/gg_density.R +++ b/R/gg_density.R @@ -18,6 +18,7 @@ #' gg_density( #' x = flipper_length_mm, #' col = species, +#' blend = "multiply", #' ) #' gg_density <- function(data = NULL, diff --git a/R/gg_lineribbon.R b/R/gg_lineribbon.R index e1a4eb2a3..d28f7183d 100644 --- a/R/gg_lineribbon.R +++ b/R/gg_lineribbon.R @@ -1,6 +1,6 @@ #' Lineribbon ggplot #' -#' @description Create a lineribbon ggplot with a wrapper around [ggplot2::ggplot()] + [geom_ribbon()][ggplot2::geom_ribbon()] + [geom_ribbon()][ggplot2::geom_line()] +#' @description Create a lineribbon ggplot with a wrapper around [ggplot2::ggplot()] + [geom_ribbon()][ggplot2::geom_ribbon()] + [geom_line()][ggplot2::geom_line()] #' #' @inheritParams gg_blanket #' diff --git a/R/gg_smooth.R b/R/gg_smooth.R index be69dedb5..2d08b3625 100644 --- a/R/gg_smooth.R +++ b/R/gg_smooth.R @@ -19,6 +19,7 @@ #' x = flipper_length_mm, #' y = body_mass_g, #' col = species, +#' blend = "multiply", #' ) #' gg_smooth <- function(data = NULL, diff --git a/man/gg_density.Rd b/man/gg_density.Rd index b727b47c5..1eb6e575a 100644 --- a/man/gg_density.Rd +++ b/man/gg_density.Rd @@ -172,6 +172,7 @@ penguins |> gg_density( x = flipper_length_mm, col = species, + blend = "multiply", ) } diff --git a/man/gg_lineribbon.Rd b/man/gg_lineribbon.Rd index 43e31073f..3d7831b49 100644 --- a/man/gg_lineribbon.Rd +++ b/man/gg_lineribbon.Rd @@ -159,7 +159,7 @@ gg_lineribbon( A ggplot object. } \description{ -Create a lineribbon ggplot with a wrapper around \code{\link[ggplot2:ggplot]{ggplot2::ggplot()}} + \link[ggplot2:geom_ribbon]{geom_ribbon()} + \link[ggplot2:geom_path]{geom_ribbon()} +Create a lineribbon ggplot with a wrapper around \code{\link[ggplot2:ggplot]{ggplot2::ggplot()}} + \link[ggplot2:geom_ribbon]{geom_ribbon()} + \link[ggplot2:geom_path]{geom_line()} } \examples{ library(ggplot2) diff --git a/man/gg_smooth.Rd b/man/gg_smooth.Rd index 058b807f3..2336cbfbc 100644 --- a/man/gg_smooth.Rd +++ b/man/gg_smooth.Rd @@ -173,6 +173,7 @@ penguins |> x = flipper_length_mm, y = body_mass_g, col = species, + blend = "multiply", ) } diff --git a/vignettes/articles/1_demo_light.Rmd b/vignettes/articles/1_demo_light.Rmd index e7a48dd72..b4de0de3d 100644 --- a/vignettes/articles/1_demo_light.Rmd +++ b/vignettes/articles/1_demo_light.Rmd @@ -158,7 +158,6 @@ penguins2 |> col = species, col_palette = c(teal, orange, pink), blend = "multiply", - mode = light_mode_t(), ) ``` diff --git a/vignettes/articles/2_demo_dark.Rmd b/vignettes/articles/2_demo_dark.Rmd index fc5403e7e..74e1470c2 100644 --- a/vignettes/articles/2_demo_dark.Rmd +++ b/vignettes/articles/2_demo_dark.Rmd @@ -165,7 +165,6 @@ penguins2 |> col = species, col_palette = c(teal, orange, pink), blend = "multiply", - mode = dark_mode_t(), ) ```