Skip to content

Commit

Permalink
fix nosuggest
Browse files Browse the repository at this point in the history
  • Loading branch information
shajoezhu committed Jan 20, 2025
1 parent 9e9be5b commit 1781e9d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion R/format_date.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
#' @return A vector.
#'
#' @export
#' @examples
#' @examplesif require(lubridate)
#' require(lubridate)
#'
#' # expected to return "2019"
#' format_date("2019")
Expand Down
16 changes: 13 additions & 3 deletions vignettes/autoslideR.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,24 @@ editor_options:
wrap: 72
---

In this vignette we show the general `autoslider.core` workflow, how you can create functions that produce study-specific outputs, and how you can integrate them into the `autoslider.core` framework.

```{r, include = FALSE}
suggested_dependent_pkgs <- c("filters")
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
comment = "#>",
eval = all(vapply(
suggested_dependent_pkgs,
requireNamespace,
logical(1),
quietly = TRUE
))
)
```
```{r, echo=FALSE}
knitr::opts_chunk$set(comment = "#")
```

In this vignette we show the general `autoslider.core` workflow, how you can create functions that produce study-specific outputs, and how you can integrate them into the `autoslider.core` framework.

# Requirements

Expand Down

0 comments on commit 1781e9d

Please sign in to comment.