The manipulateWidget
package is largely inspired by the manipulate
package from Rstudio. It provides the function `manipulateWidget
that can be used to create in a very easy and quick way a graphical interface that lets the user modify the data or the parameters of an interactive chart. Technically, the function generates a Shiny gadget, but the user does not even have to know what is Shiny.
The hard part for the user is to write a code that generates an interactive chart. Once this is done, he only has to describe what parameter of the code should be modified by what input control. For instance, consider the following code that identifies clusters in the iris data set and uses package plotly
to generate an interactive scatter plot.
library(plotly)
data(iris)
plotClusters <- function(xvar, yvar, nclusters) {
clusters <- kmeans(iris[, 1:4], centers = nclusters)
clusters <- paste("Cluster", clusters$cluster)
plot_ly(x = ~iris[[xvar]], y = ~iris[[yvar]], color = ~clusters,
type = "scatter", mode = "markers") %>%
layout(xaxis = list(title=xvar), yaxis = list(title=yvar))
}
# plotClusters("Sepal.Width", "Sepal.Length", 3)
Once this code has been written, it is very easy to produce a UI that lets the user change the values of the three parameters of the function plotClusters
:
varNames <- names(iris)[1:4]
manipulateWidget(
plotClusters(xvar, yvar, nclusters),
xvar = mwSelect(varNames),
yvar = mwSelect(varNames, value = "Sepal.Width"),
nclusters = mwSlider(1, 10, value = 3)
)
An example of output of manipulateWidget
The package also provides the combineWidgets
function to easily combine multiple interactive charts in a single view. Of course both functions can be used together: here is an example that uses packages dygraphs
and plot_ly
(code at the end of the document).
An example of what one can do with manipulateWidgets
The main function of the package is manipulateWidget
. It takes as argument an expression that generates an interactive chart (and more precisely an htmlwidget object. See http://www.htmlwidgets.org/ if you have never heard about it) and a set of input controls created with functions mwSlider, mwCheckbox… which are used to dynamically change values within the expression. Each time the user modifies the value of a control, the expression is evaluated again and the chart is updated. Consider the following code:
manipulateWidget(
myPlotFun(country),
country = mwSelect(c("BE", "DE", "ES", "FR"))
)
It generates a graphical interface with a select input on its left with options “BE”, “DE”, “ES”, “FR”. The value of this input is mapped to the variable country
in the expression. By default, at the beginning the value of country
will be equal to the first choice of the input. So the function will first execute myPlotFun("BE")
and the result will be displayed in the main panel of the interface. If the user changes the value to “FR”, then the expression myPlotFun("FR")
is evaluated and the new result is displayed.
The interface also contains a button “Done”. When the user clicks on it, the last chart is returned. It can be stored in a variable, be modified by the user, saved as a html file with saveWidget from package htmlwidgets or converted to a static image file with package webshot
.
Of course, one can create as many controls as needed. The interface of the animated example in the introduction was generated with the following code:
manipulateWidget(
myPlotFun(distribution, range, title),
distribution = mwSelect(choices = c("gaussian", "uniform")),
range = mwSlider(2000, 2100, value = c(2000, 2100), label = "period"),
title = mwText()
)
To see all available controls that can be added to the UI, take a look at the list of the functions of the package:
help(package = "manipulateWidget")
The combineWidgets
function gives an easy way to combine interactive charts (like par(mfrow = c(...))
or layout
for static plots). To do it, one has simply to pass to the function the widgets to combine. In the next example, we visualize two random time series with dygraphs and combine them.
library(dygraphs)
plotRandomTS <- function(id) {
dygraph(data.frame(x = 1:10, y = rnorm(10)), main = paste("Random plot", id))
}
combineWidgets(plotRandomTS(1), plotRandomTS(2))
The functions tries to find the best number of columns and rows. But one can control them with parameters nrow
and ncol
. It is also possible to control their relative size with parameters rowsize
and colsize
. To achieve complex layouts, it is possible to use nested combined widgets. Here is an example of a complex layout.
combineWidgets(
ncol = 2, colsize = c(2, 1),
plotRandomTS(1),
combineWidgets(
ncol = 1,
plotRandomTS(2),
plotRandomTS(3),
plotRandomTS(4)
)
)
Even if the main use of combineWidgets
is to combine htmlwidgets
, it can also display text or html tags. It can be useful to include comments in a chart. Moreover it has arguments to add a title and to add some html content in the sides of the chart.
combineWidgets(
plotRandomTS(1),
plotRandomTS(2),
plotRandomTS(3),
plotRandomTS(4),
title = "Four random plots",
header = "Here goes the header content. <span style='color:red'>It can include html code</span>.",
footer = "Here goes the footer content.",
leftCol = "<div style='margin-top:150px;'>left column</div>",
rightCol = "<div style='margin-top:150px;'>right column</div>"
)
If you have a large number of inputs, you can easily group them. To do so, simply pass to the function manipulateWidget
a list of inputs instead of passing directly the inputs. Here is a toy example. Groups are by default collapsed and user can click on their title to display/collapse then.
mydata <- data.frame(x = 1:100, y = rnorm(100))
manipulateWidget(
dygraph(mydata[range[1]:range[2], ],
main = title, xlab = xlab, ylab = ylab),
range = mwSlider(1, 100, c(1, 100)),
"Graphical parameters" = list(
title = mwText("Fictive time series"),
xlab = mwText("X axis label"),
ylab = mwText("Y axis label")
)
)
Grouping inputs
Sometimes some inputs are relevant only if other inputs have some value. manipulateWidget
provides a way to show/hide inputs conditionally to the value of the other inputs thanks to parameter .display
. This parameter expects a named list of expressions. The names are the ones of the inputs to show/hide and the expressions can include any input and have to evaluate to TRUE/FALSE
. Here is a toy example, using package plot_ly
. User can choose points or lines to represent some data. If he chooses lines, then an input appears to let him choose the width of the lines.
mydata <- data.frame(x = 1:100, y = rnorm(100))
myPlot <- function(type, lwd) {
if (type == "points") {
plot_ly(mydata, x= ~x, y = ~y, type = "scatter", mode = "markers")
} else {
plot_ly(mydata, x= ~x, y = ~y, type = "scatter", mode = "lines",
line = list(width = lwd))
}
}
manipulateWidget(
myPlot(type, lwd),
type = mwSelect(c("points", "lines"), "points"),
lwd = mwSlider(1, 10, 1),
.display = list(lwd = type == "lines")
)
Conditional inputs
The “normal” use of manipulateWidget
is to provide an expression that always return an htmlwidget
. In such case, every time the user changes the value of an input, the current widget is destroyed and a new one is created and rendered. This behavior is not optimal and sometimes it can be painful for the user: consider for instance an interactive map. Each time user changes an input, the map is destroyed and created again, then zoom and location on the map are lost every time.
Some packages provide functions to update a widget that has already been rendered. This is the case for instance for package leaflet
with the function leafletProxy
. To use such functions, manipulateWidget
evaluates the parameter .expr
with two extra variables:
.initial
: TRUE
if the expression is evaluated for the first time and then the widget has not been rendered yet, FALSE
if the widget has already been rendered.
.session
: A shiny session object.
Moreover the ID of the rendered widget is always “output”. Then it is quite easy to write an expression that initializes a widget when it is evaluated the first time and then that updates this widget. Here is an example using package leaflet
.
lon <- rnorm(10, sd = 20)
lat <- rnorm(10, sd = 20)
myMapFun <- function(radius, color, initial, session) {
if (initial) {
# Widget has not been rendered
map <- leaflet() %>% addTiles()
} else {
# widget has already been rendered
map <- leafletProxy("output", session) %>% clearMarkers()
}
map %>% addCircleMarkers(lon, lat, radius = radius, color = color)
}
manipulateWidget(myMapFun(radius, color, .initial, .session),
radius = mwSlider(5, 30, 10),
color = mwSelect(c("red", "blue", "green")))
Conditional inputs
Sometimes one wants to compare two similar charts to visualize the impact of some parameter or to compare different data sets. manipulateWidget
has an argument to perform such comparison without writing much code: .compare
. One just has to write the code to generate one chart and use this argument to specify which parameters should vary between the two charts. Here is a toy example that uses dygraphs
.
mydata <- data.frame(
timeId = 1:100,
series1 = rnorm(100),
series2 = rnorm(100),
series3 = rnorm(100)
)
manipulateWidget(
dygraph(mydata[range[1]:range[2], c("timeId", series)], main = title),
range = mwSlider(1, 100, c(1, 100)),
series = mwSelect(c("series1", "series2", "series3")),
title = mwText(),
.compare = list(
title = list("First chart", "Second chart"),
series = NULL
)
)
Comparison mode
manipulateWidget
in a documentmanipulateWidget
uses Shiny, so it does not work in a “normal” Rmarkdown document. If one uses the function in a code chunck, the htmlwidget will be outputed with the default values of the parameters and there will be no interface to modify the parameters.
Nevertheless, it is possible to include a shiny application in a document with the runtime: shiny (see http://rmarkdown.rstudio.com/authoring_shiny.html). In such setting manipulateWidget
works normally and the document can be published on a shiny server to let final users play with the parameters of the document.
Here is the complete code to generate the animated example in the introduction:
myPlotFun <- function(distribution, range, title) {
randomFun <- switch(distribution, gaussian = rnorm, uniform = runif)
myData <- data.frame(
year = seq(range[1], range[2]),
value = randomFun(n = diff(range) + 1)
)
combineWidgets(
ncol = 2, colsize = c(2, 1),
dygraph(myData, main = title),
combineWidgets(
plot_ly(x = myData$value, type = "histogram"),
paste(
"The graph on the left represents a random time series generated using a <b>",
distribution, "</b>distribution function.<br/>",
"The chart above represents the empirical distribution of the generated values."
)
)
)
}
manipulateWidget(
myPlotFun(distribution, range, title),
distribution = mwSelect(choices = c("gaussian", "uniform")),
range = mwSlider(2000, 2100, value = c(2000, 2100), label = "period"),
title = mwText()
)