preexplorer

Download License Docs Crate

Easy plotter and saver of simple data. Handy tool for development stage or small computational projects. 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.

Purpose

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!

Work flow

  1. Compute your thing in Rust
  2. Pass the results to a suitable struct from preexplorer, or use the preexplore method.
  3. Use the method plot or plot_later.

After cargo run, your data is saved and a suitable first script for gnuplot to plot the data is saved. If you used plot, you will get a plot by gnuplot that you can save.

The gnuplot script is located in

target\\preexplorer\\plots\\my_identifier.gnu

where my_identifier is the name you gave in rust to the plot.

Therefore, to run it in gnuplot (and get the plot again), run from the console

gnuplot target\\preexplorer\\plots\\my_identifier.gnu

Main features

Gallery

Sequences

Processes

Densities

Heatmaps

For more, see the folder examples.

Installation

Future

Q & A

  1. Why processes must be the same structs to be compared? Because of Rust explicit typing: comparisons need to save an explicit type.
  2. Are there n-dimensional variants? No, it is out of scope. Please implement your own plot script for that. You can do so easily based in the Data struct.
  3. How to deactivate some options, e.g. tics? What would represent the empty value instead of None. This happens because of inferring type errors in Rust.

Disclaimer

There is no connection with the gnuplot project.

Changelog

See Changelog.