timeLine {SMITIDvisu} | R Documentation |
timeLine
Description
Draw a host time line. Time use timestamp or Date in ISO format.
Usage
timeLine(
data,
title,
color = NULL,
width = NULL,
height = NULL,
elementId = NULL
)
Arguments
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 |
Examples
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"))
## Not run:
## export as standalone html file
htmlwidgets::saveWidget(tl, "timeline.html")
browseURL("timeline.html")
## End(Not run)
[Package SMITIDvisu version 0.0.9 Index]