From 047070cf2eedd53f3896b08afd71261373db9957 Mon Sep 17 00:00:00 2001 From: Kasper Schou Telkamp Date: Mon, 13 Nov 2023 09:41:58 +0100 Subject: [PATCH] Updated documentation --- man/aeddo.Rd | 6 +++--- man/autoplot.Rd | 6 +++--- man/plot.Rd | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/man/aeddo.Rd b/man/aeddo.Rd index 3bb9d72..ee578ce 100644 --- a/man/aeddo.Rd +++ b/man/aeddo.Rd @@ -85,9 +85,9 @@ aeddo_data <- data.frame( fixed_effects_formula <- y ~ 1 # Choose a size for the rolling window -k = 2 +k <- 2 # ... and quantile for the threshold -sig_level = 0.9 +sig_level <- 0.9 # Employ the algorithm aeddo_results <- aeddo( @@ -100,7 +100,7 @@ aeddo_results <- aeddo( lower = c(-Inf, 1e-6), upper = c(Inf, 1e2), method = "L-BFGS-B" - ) +) # Print the results print(aeddo_results) } diff --git a/man/autoplot.Rd b/man/autoplot.Rd index f790cca..a21cf27 100644 --- a/man/autoplot.Rd +++ b/man/autoplot.Rd @@ -43,9 +43,9 @@ aeddo_data <- data.frame( fixed_effects_formula <- y ~ 1 # Choose a size for the rolling window -k = 2 +k <- 2 # ... and quantile for the threshold -sig_level = 0.9 +sig_level <- 0.9 # Employ the algorithm aeddo_results <- aeddo( @@ -58,7 +58,7 @@ aeddo_results <- aeddo( lower = c(-Inf, 1e-6), upper = c(Inf, 1e2), method = "L-BFGS-B" - ) +) # Create a ggplot visualization for the aeddo object autoplot(aeddo_results) diff --git a/man/plot.Rd b/man/plot.Rd index fa5bf51..d52cd01 100644 --- a/man/plot.Rd +++ b/man/plot.Rd @@ -41,9 +41,9 @@ aeddo_data <- data.frame( fixed_effects_formula <- y ~ 1 # Choose a size for the rolling window -k = 2 +k <- 2 # ... and quantile for the threshold -sig_level = 0.9 +sig_level <- 0.9 # Employ the algorithm aeddo_results <- aeddo( @@ -56,7 +56,7 @@ aeddo_results <- aeddo( lower = c(-Inf, 1e-6), upper = c(Inf, 1e2), method = "L-BFGS-B" - ) +) # Create a ggplot visualization for the aeddo object plot(aeddo_results)