plan_day | R Documentation |
This function plots works corresponding to each hour on a rose plot.
plan_day(dwork, width = 1, brdcol = "grey")
dwork |
A character vector of length 24, with activity names for each hour starting from 6 AM and ending at 5 AM the next day. |
width |
Width of bars. |
brdcol |
Color of bar border. Use |
A ggplot
object, which can be further modified
with ggplot2
functions and themes.
set.seed(123)
work <- sample(c("Study", "Adda", "Entertainment", "Games", "Exercise", "Meal"),
size = 24, replace = TRUE
)
plan_day(dwork = work, brdcol = NA)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.