View source: R/clock_chart_col.R
clock_chart_col | R Documentation |
This function will plot time of events on a 24 hour clock to show which events took place at what times. The lines are colored by a criteria.
clock_chart_col(data, time, crit, high = "red", low = "green")
data |
A data frame |
time |
Time in 24 hours. The allowed time formats for these family
of charts are |
crit |
a numeric vector by which lines will be colored. |
high |
The color name for the high values. The default is |
low |
The color name for the low values. The default is |
Change the title, subtitle or the caption of the plot with
ggplot2::labs()
.Change the legend title by adding
ggplot2::labs(size = "TITLE")
or labs(color = "TITLE")
.
Add
or modify legend by theme(legend.position = "POSITION")
; the valid
position names in ggplot2
are top
, bottom
, right
, and left
,
excluding more complex options.
A ggplot
object, which can be further modified
with ggplot2
functions and themes.
clock_chart_qnt()
, and clock_chart_qlt()
.
df <- data.frame(
time = c("06:00:00", "08:00:00", "17:30:00"),
value = c(3, 6, 9)
)
clock_chart_col(df, time, crit = value) +
ggplot2::labs(size = "TITLE")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.