From 77b1a7863f06d2e90e01c4014f38fec674fc2fbf Mon Sep 17 00:00:00 2001 From: Dean Attali Date: Wed, 16 Jan 2019 12:10:41 -0600 Subject: [PATCH] add timevis to showcase (without make-ing or recompiling) --- include/before_body.html | 6 +++++- showcase_timevis.Rmd | 15 +++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 showcase_timevis.Rmd diff --git a/include/before_body.html b/include/before_body.html index 6d4ba506..447026e2 100644 --- a/include/before_body.html +++ b/include/before_body.html @@ -84,10 +84,14 @@
rglwidget
DiagrammeR

Diagrams and flowcharts

- +
MetricsGraphics

Scatterplots and line charts with D3

+ +
timevis
+

Interactive timeline visualizations

+
diff --git a/showcase_timevis.Rmd b/showcase_timevis.Rmd new file mode 100644 index 00000000..90934692 --- /dev/null +++ b/showcase_timevis.Rmd @@ -0,0 +1,15 @@ +--- +title: "htmlwidgets: timevis" +--- + +### timevis + + +timevis lets you create rich and fully interactive timeline visualizations +based on the [vis.js](http://visjs.org/) Timeline library. + +```{r timevis} +library(timevis) +timevis(data = timevisData, groups = timevisDataGroups, + options = list(editable = TRUE)) +``` \ No newline at end of file