Nothing
#' Simple mtcars print function
#'
#' This is a function that runs every hour starting at
#' 2024-03-01 09:00:00
#'
#' @maestroFrequency 1 day
#' @maestroStartTime 2024-03-01 09:00:00
#' @maestroTz America/Halifax
#'
#' @export
get_mtcars <- function() {
Sys.sleep(0.02)
mtcars
}
#' Multiply
#'
#' @maestroFrequency 3 month
#'
#' @export
wait <- function() {
Sys.sleep(0.01)
}
#' @maestroFrequency 1 week
#'
#' @export
weekly <- function() {
1 + 1
}
#' @maestroStartTime 2030-12-12 10:10:10
#' @maestroFrequency 1 day
way_in_the_future <- function() {
invisible()
}
#' @maestroFrequency weekly
#'
#' @export
weekly2 <- function() {
1 + 1
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.