make_timetable | R Documentation |
Create timetable of time-slices from given structure as a list
make_timetable(
struct = list(ANNUAL = "ANNUAL"),
year_fraction = 1,
warn = FALSE
)
struct |
named list of timeframes with sets of timeslices and optional shares of every slice or frame in the nest |
warn |
logical, if TRUE, warning will be issued if |
an data.frame with the specified structure.
make_timetable()
make_timetable(list("SEASON" = c("WINTER", "SUMMER")))
make_timetable(list("SEASON" = c("WINTER" = .6, "SUMMER" = .4)))
make_timetable(list(
"SEASON" = list(
"WINTER" = list(.3, DAY = c("MORNING", "EVENING")),
"SUMMER" = list(.7, DAY = c("MORNING", "EVENING"))
)
))
make_timetable(list(
"SEASON" = list("WINTER" = .3, "SUMMER" = .7),
"DAY" = c("MORNING", "EVENING")
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.