Skip to content

Commit

Permalink
Corrected typos that caused linting failure
Browse files Browse the repository at this point in the history
  • Loading branch information
telkamp7 committed Oct 30, 2023
1 parent 066e1d3 commit 909d387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 0 additions & 4 deletions vignettes/aedseo_introduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,8 @@ In this section, we will explore how to use the `predict` and `summary` S3 metho
The `predict` method for `aedseo` objects allows you to make predictions for future time steps based on the estimated growth rates. Here's how to use it:

```{r}
# Example: Predict growth rates for the next 5 time steps
(prediction <- predict(aedseo_results, n_step = 5))
```

In the example above, we use the predict method to predict growth rates for the next 5 time steps. The n_step argument specifies the number of steps into the future you want to forecast. The resulting prediction object will contain estimates, lower bounds, and upper bounds for each time step.
Expand All @@ -232,9 +230,7 @@ The summary method for aedseo objects provides a concise summary of your automat


```{r summary}
summary(aedseo_results)
```

The summary method generates a summary message that includes details such as the reference time point, growth rate estimates, and the number of growth warnings in the series. It helps you quickly assess the key findings of your analysis.
Expand Down
2 changes: 2 additions & 0 deletions vignettes/articles/aedseo.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ To accommodate a variety of scenarios encountered in practical applications, the


```{r parameter_combinations}
#TODO: #7 Conduct the simulation study and write the article on the `aedseo`
# package. @telkamp7
parameter_combinations <- as_tibble(expand_grid(
theta = c(3, 4, 5, 6, 7),
beta = c(0.001),
Expand Down

0 comments on commit 909d387

Please sign in to comment.