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.
Do you have a costly process in Rust and want to save the data for postprocessing? Would you like to still have a basic glance to check it and leave fine-tuning of the plot for later? This is the crate for you!
For more, see the folder examples.
For now, this crate is Windows only, because of extensions in file name. Help wanted.
preexplorer = "0.2"
to your Cargo.toml
file under [dependencies]
.use preexplorer::prelude::*;
in your binary, and then use the short-name pre::...
and the preexplore
method directly in iterators and tuple of iterators.There is no connection with the gnuplot project.
Last version:
For more, see Changelog.