[][src]Module preexplorer::density

Histograms or realizations of the same variable. Empirical densities. Histogram type of plotting: point cloud, density or probability density function (pdf) and cummulative density function (cdf).

Examples

Quick plot.

use preexplorer::prelude::*;
pre::Density::new((0..10)).plot("my_identifier").unwrap();

Compare Densitys.

use preexplorer::prelude::*;
pre::Densities::new(vec![
    pre::Density::new((0..10)),
    pre::Density::new((0..10)),
    ])
    .plot("my_identifier").unwrap();

Re-exports

pub use crate::traits::Comparison;
pub use crate::traits::Configurable;
pub use crate::traits::Plotable;
pub use crate::traits::Saveable;
pub use comparison::Densities;

Modules

comparison

Compare various Distribution types together. Comparison of histograms.

Structs

Density

Akin to a histogram: point cloud, density and cummulative distribution.