vignettes/interactive_plots.Rmd
interactive_plots.Rmd
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.
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
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)