From 8563d1508163e85ae0a892b280bbad5be1562dc9 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 7 Oct 2023 13:20:34 +0200 Subject: [PATCH] fix examples --- R/data_plot.R | 2 +- man/data_plot.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/data_plot.R b/R/data_plot.R index 9afa86843..a369d7b3d 100644 --- a/R/data_plot.R +++ b/R/data_plot.R @@ -67,7 +67,7 @@ #' x <- hdi(model) #' plot(x) + theme_modern() #' -#' data <- rnorm(1000, 1) +#' data <<- rnorm(1000, 1) #' x <- p_direction(data) #' plot(x) #' diff --git a/man/data_plot.Rd b/man/data_plot.Rd index 4daef23d7..136ac4499 100644 --- a/man/data_plot.Rd +++ b/man/data_plot.Rd @@ -81,7 +81,7 @@ plot(x) x <- hdi(model) plot(x) + theme_modern() -data <- rnorm(1000, 1) +data <<- rnorm(1000, 1) x <- p_direction(data) plot(x)