Print the JSON of a Bokeh figure

print_model_json(fig, prepare = TRUE, pretty = TRUE, file = "", pbcopy = FALSE)

Arguments

fig

figure to print

prepare

logical - should the figure be sent through preparations that need to be done prior to plotting (TRUE), or printed as-is (FALSE)

pretty

parameter passed on to toJSON

file

parameter passed on to cat

pbcopy

logical - if on OSX, should the results be passed to the clipboard (TRUE) instead of printed to the screen (FALSE)?

Examples

if (FALSE) { p <- figure() %>% ly_points(1:10) %>% tool_pan(dimensions = "height") print_model_json(p) }