Description Usage Arguments Value Examples
Tidy daily data with multiple measures.
1 |
data |
Data frame or tibble with a column named 'date' and other columns of interest. |
Tidy tibble with the columns date, measures, and value.
1 2 3 4 5 | a <- tibble::tibble(date =
lubridate::ymd("1970-01-01", "1970-01-02", "1970-01-03"),
sleepDurationHrs = c(7.5, 8.0, 7.9),
minAsleepHrs = c(7.4, 7.0, 7.7))
tidy_multi_meas_data(a)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.