
Creating interactive plots
Benjamin Guiastrennec
03 August, 2026
Source:vignettes/interactive_plots.Rmd
interactive_plots.RmdWarning
Please note that this feature is experimental and not all aspects of ggplot2 are supported by plotly!
To learn more about plotly you visit this page.
Generate a plot with xpose
Then generate any plot in xpose and store it in an object.
gof_plot <- dv_vs_ipred(xpdb_ex_pk, type = 'pl',
aes(point_color = SEX,
line_color = SEX)) +
labs(color = 'Sex', title = 'DV vs IPRED')## Using data from $prob no.1
## Filtering data by EVID == 0
Convert the plot from ggplot2 to plotly
The ggplot2 object is now automatically converted to a plotly graph. The scales can now be changed interactively, groups can be hidden by clicking on the legend
plotly::ggplotly(gof_plot)