When attempting to create a timeline via vistime an overlap in the dates produces a graphic more like a gantt chart which is undesirable. I wish to have one continous timeline.
Below I have shown the current issue and the desired result.
Current Output:
library(vistime)
syst2 <- data.frame(Position = c(0,0,rep(c( 1,0), 3)),
Name = rep(c("SYS2", "SYS2","SYS4","SYS4"), each=2),
start = c("2018-10-01","2018-10-11","2018-11-26","2018-12-06","2018-10-01","2018-10-24","2018-11-23","2018-12-05"),
end = c("2018-10-16","2018-11-26","2018-12-06","2018-12-31","2018-10-24","2018-11-23","2018-12-05","2018-12-31"),
color = c('#FF0000','#FF0000',rep(c("#008000",'#FF0000'), 3)),
fontcolor = c('#FF0000','#FF0000',rep(c("#008000",'#FF0000'), 3)))
vistime(syst2, events = "Position", groups = "Name")
Desired Output: How can I merge date ranges of overlapping periods for similar positions (e.g. 0 or 1)?
syst2 <- data.frame(Position = c(rep(c( 0,1), 3),0),
Name = c(rep(c("SYS2"), each=3),rep(c("SYS4"), each=4)),
start = c("2018-10-01","2018-11-26","2018-12-06","2018-10-01","2018-10-24","2018-11-23","2018-12-05"),
end = c("2018-11-26","2018-12-06","2018-12-31","2018-10-24","2018-11-23","2018-12-05","2018-12-31"),
color = c(rep(c('#FF0000',"#008000"), 3),'#FF0000'),
fontcolor = c(rep(c('#FF0000',"#008000"), 3),'#FF0000'))
vistime(syst2, events = "Position", groups = "Name")
This can be achieved in two ways:
1.) Correcting the data before drawing it
2. Manipulating the resulting vistime object after generation
0.7.0.9000
, which can be obtained bydevtools::install_github("shosaco/vistime")
.Just one additional, independent, remark: It seems you don't want labels to be shown. You don't need to set the
fontcolor
column equal tocolor
column for that. There is an extra argument for that purpose:showLabels = FALSE
.