Skip to content

Commit

Permalink
prefix in vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
m7pr committed Nov 14, 2024
1 parent 0f6a2a8 commit af099e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/decorate-module-output.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ tm_decorated_plot <- function(
{
plot_1 <- ggplot2::ggplot(dataname, ggplot2::aes(x = x, y = y)) +
ggplot2::geom_point() +
ggtitle("plot 1")
ggplot2::ggtitle("plot 1")
},
dataname = as.name(input$dataname),
x = as.name(input$x),
Expand All @@ -470,7 +470,7 @@ tm_decorated_plot <- function(
{
plot_2 <- ggplot2::ggplot(dataname, ggplot2::aes(x = x, y = y)) +
ggplot2::geom_point() +
ggtitle("plot 2")
ggplot2::ggtitle("plot 2")
},
dataname = as.name(input$dataname),
x = as.name(input$x),
Expand Down

0 comments on commit af099e8

Please sign in to comment.