Create an interactive graphic with a ggplot object
to be used in a web browser. The function should replace function
ggiraph
.
Usage
girafe(
code,
ggobj = NULL,
pointsize = 12,
width_svg = NULL,
height_svg = NULL,
options = list(),
dependencies = NULL,
...
)
Arguments
- code
Plotting code to execute
- ggobj
ggplot object to print. Argument
code
will be ignored if this argument is supplied.- pointsize
the default pointsize of plotted text in pixels, default to 12.
- width_svg, height_svg
The width and height of the graphics region in inches. The default values are 6 and 5 inches. This will define the aspect ratio of the graphic as it will be used to define viewbox attribute of the SVG result.
If you use
girafe()
in an 'R Markdown' document, we recommend not using these arguments so that the knitr optionsfig.width
andfig.height
are used instead.- options
a list of options for girafe rendering, see
opts_tooltip()
,opts_hover()
,opts_selection()
, ...- dependencies
Additional widget HTML dependencies, see
htmlwidgets::createWidget()
.- ...
arguments passed on to
dsvg()
Details
Use geom_zzz_interactive
to create interactive graphical elements.
Difference from original functions is that some extra aesthetics are understood: the interactive_parameters.
Tooltips can be displayed when mouse is over graphical elements.
If id are associated with points, they get animated when mouse is over and can be selected when used in shiny apps.
On click actions can be set with javascript instructions. This option should not be used simultaneously with selections in Shiny applications as both features are "on click" features.
When a zoom effect is set, "zoom activate", "zoom desactivate" and "zoom init" buttons are available in a toolbar.
When selection type is set to 'multiple' (in Shiny applications), lasso selection and lasso anti-selections buttons are available in a toolbar.
Widget options
girafe animations can be customized with function girafe_options()
.
Options are available to customize tooltips, hover effects, zoom effects
selection effects and toolbar.
Widget sizing
girafe graphics are responsive, which mean, they will be resized
according to their container. There are two responsive behavior
implementations: one for Shiny applications and flexdashboard documents
and one for other documents (i.e. R markdown and saveWidget
).
Graphics are created by an R graphic device (i.e pdf, png, svg here) and
need arguments width and height to define a graphic region.
Arguments width_svg
and height_svg
are used as corresponding
values. They are defining the aspect ratio of the graphic. This proportion is
always respected when the graph is displayed.
When a girafe graphic is in a Shiny application,
graphic will be resized according to the arguments width
and
height
of the function girafeOutput
. Default
values are '100\
outer bounding box of the graphic (the HTML element that will
contain the graphic with an aspect ratio).
When a girafe graphic is in an R markdown document (producing an HTML
document), the graphic will be resized according to the argument width
of the
function girafe
. Its value is beeing used to define a relative
width of the graphic within its HTML container. Its height is automatically
adjusted regarding to the argument width
and the aspect ratio.
Examples
library(ggplot2)
dataset <- mtcars
dataset$carname <- row.names(mtcars)
gg_point <- ggplot(
data = dataset,
mapping = aes(
x = wt, y = qsec, color = disp,
tooltip = carname, data_id = carname
)
) +
geom_point_interactive() +
theme_minimal()
x <- girafe(ggobj = gg_point)
if (interactive()) {
print(x)
}