Easy plotter and saver of simple data. Handy tool for development stage or small computational projects.
Handy way to save data, have a quick view and an initial gnuplot script to plot it. if you are looking for a pure Rust plotter, check out plotters.
Rust is meant for computations and plotting is usually an iterative process, done best in tools like gnuplot. That is way we separate both steps: compute in Rust, save the data, find the best plot with gnuplot.
preexplorer = "0.1"
to your Cargo.toml
file under [dependencies]
.use preexplorer::prelude::*;
in your binary, and then use the short-name pre::...
.There is no connection with the gnuplot project.