[][src]Module preexplorer::data

Generic multi-dimensional data. Not automatically ploted. Generic multi-dimensional data.

Remarks

It should be used with the plot_later command, writting the perfect plot script by interacting with gnuplot directly.

Examples

Save data and plot script for posterior analysis.

let data = array![
    [1, 2, 3, 4, 5],
    [2, 5, 6, 7, 8],
    [3, 11, 12, 13, 14],
];
let dim = 5;

pre::Data::new(data.iter(), dim)
    .plot_later("my_identifier")
    .unwrap();

Re-exports

pub use crate::traits::Configurable;
pub use crate::traits::Plotable;
pub use crate::traits::Saveable;

Structs

Data

Generic multi-dimensional data.