ruviz 0.4.8

High-performance 2D plotting library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Composite plot types
//!
//! Multi-panel and combined visualizations.
//! - Joint plots (scatter + marginal distributions)
//! - Pair plots (scatter matrix)
//! - Inset/zoom axes

pub mod jointplot;
pub mod pairplot;

pub use jointplot::{
    JointKind, JointPlotConfig, JointPlotLayout, MarginalHistogram, compute_marginal_histogram,
    joint_plot_layout,
};
pub use pairplot::{
    DiagKind, OffDiagKind, PairPlotCell, PairPlotConfig, PairPlotLayout, cell_variable_names,
    compute_pairplot_layout,
};