Skip to contents

This function plots works corresponding to each hour on a rose plot.

Usage

plan_day(dwork, width = 1, brdcol = "grey")

Arguments

dwork

A character vector having names of work at each of 24 hours (starts from 6 am)

width

Width of bars

brdcol

Color of bar border. To have no (transparent color), use NA

Value

A circular chart showing work at each hour on a 24-hour clock

Examples

work <- sample(c("Study", "Adda", "Entertainment", "Games", "Exercise", "Meal"),
size = 24, replace = TRUE)
plan_day(dwork = work, brdcol = NA)