Make-Csv
This is just a very simple crate which implements four macro rules which can be helpful
for creating .csv
files and plottin them using Python
.
Usage
use ;
// create csv writer for file "data.csv"
let mut wtr = csv_start!;
// add header and one data row
csv_entry!;
csv_entry!;
// flush the writer
csv_stop!;
// use python script to plot the data
python!;