Description Usage Arguments Value Examples
View source: R/customizable_functions.R
Creates a time series of baseline outcome values. This function allows the user to input a custom function if desired to specify outcome trend.
1 2 | create_baseline(n, average_baseline = NULL, trend = "no trend", slope = 1,
amp = 0.6, cust_base_func = NULL, ...)
|
n |
A numeric value specifying the number of days for which to simulate data |
average_baseline |
A non-negative numeric value specifying the average outcome value over all simulated days. |
trend |
A character string that specifies the desired trend function. Options are:
See the package vignette for examples of the shapes of these trends. |
slope |
A numeric value specifying the slope of the trend, to be used
with |
amp |
A numeric value specifying the amplitude of the seasonal trend. Must be between -1 and 1. |
cust_base_func |
A R object name specifying a user-made custom function for baseline trend. |
... |
Optional arguments to a custom baseline function |
A numeric vector of baseline outcome values
1 | create_baseline(n = 5, average_baseline = 22, trend = "linear")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.