dreamRs / timelineschart

Htmlwidget for timelines-chart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

timelineschart

R interface to timelines-chart

Lifecycle: experimental R-CMD-check

Installation

You can install from GitHub with:

remotes::install_github("dreamRs/timelineschart")

Example

Visualise a planning as a timeline chart:

## Some data
dates <- sample(seq(as.Date("2019-01-01"), as.Date("2019-11-30"), by = "day"), 55)
planning <- data.frame(
  group = paste("Group", rep(1:10, sample(1:10, 10))),
  label = paste("Label", letters[1:5][sample.int(5, 55, TRUE)]),
  start = dates,
  end = dates + sample(1:30, 55, TRUE),
  value = sample(c("Shutdown", "Maintenance"), 55, TRUE),
  stringsAsFactors = FALSE
)

## Timeline chart
timelines(data = planning, line_height = 24) %>%
  set_scale(palette = c("#FF0000", "#FAAC58"), discrete = TRUE) %>% 
  set_time(use_utc = TRUE)

About

Htmlwidget for timelines-chart

License:Other


Languages

Language:R 69.1%Language:JavaScript 30.9%