Interactive plot of the edibble design
# S3 method for edbl_design
plot(
x,
which = c("factors", "levels"),
width = "100%",
height = NULL,
seed = 1,
title = NULL,
subtitle = NULL,
footer = NULL,
background = "transparent",
view = c("show-buttons", "hide-buttons", "static"),
...
)# S3 method for edbl_table
plot(x, ...)
plot_fct_graph(
x,
width = "100%",
height = NULL,
seed = 1,
title = NULL,
subtitle = NULL,
footer = NULL,
background = "transparent",
view = c("show-buttons", "hide-buttons", "static"),
...
)
plot_lvl_graph(
x,
width = "100%",
height = NULL,
seed = 1,
title = NULL,
subtitle = NULL,
footer = NULL,
background = "transparent",
view = c("show-buttons", "hide-buttons", "static"),
...
)
A plot.
An edibble design.
A string of either "factors" or "levels".
The width and height of the plot.
A seed number so same plot is always generated.
The title, subtitle or footer of the plot.
By default it uses the name from the x object as the title while rest is empty.
To modify the look of the text, you can pass a character string consisting of valid
for input style value in an HTML object, e.g. "font-size: 18px;font-family:serif;" as a
named vector where the name corresponds to the text to display, e.g. c("Title" = "font-size:20px;").
The background color of the plot. Default is transparent. The input can be a color name (e.g. "white"), a HEX value ("#FFFFFF"), or rgb/rgba in the format like rgba(0, 0, 0, 0).
A string of either "show-buttons" (default), "hide-buttons", "static"
Currently unused.
plot(takeout(menu_crd(t = 4, n = 20)))
Run the code above in your browser using DataLab