plot_xpm_facet {xvm} | R Documentation |
generate faceted plots from xpm data
Description
creates dual-panel visualizations of xpm data with scatter or area plots.
Usage
plot_xpm_facet(xpm_data, plot_type = "scatter")
Arguments
xpm_data |
a xpm object (from |
plot_type |
visualization type: "scatter" (default) or "area". |
Value
a ggplot2 object with:
Dual facets showing x/y axis relationships
Automatic data transformation for visualization
NULL if invalid plot_type specified
Examples
library(xvm)
xpm_file_path <- system.file("extdata/gibbs.xpm", package = "xvm")
xpm_data <- read_xpm(xpm_file_path)
plot_xpm_facet(xpm_data) # plot pseudo-3D from xpm file
[Package xvm version 0.0.2 Index]