timeLine {SMITIDvisu} | R Documentation |
Draw a host time line. Time use timestamp or Date in ISO format.
timeLine(data, title, color = NULL, width = NULL, height = NULL, elementId = NULL)
data |
a data.frame that reprensent hosts status in time with ID, status and time in columns |
title |
a tttle as character |
color |
list of color for timeline elements |
width |
numeric width for the area in pixels. |
height |
numeric hieght for the area in pixels. |
elementId |
the element ID where is draw |
library(SMITIDvisu) data(hostline) tl <- timeLine(hostline, title="Example host 113", color=list("infected"="red","offspring"="green", "alive"="blue","inf"="orange", "dead"="black","Obs"="purple")) ## export as standalone html file htmlwidgets::saveWidget(tl, "timeline.html") browseURL("timeline.html")