This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tell gnuplot to use tabs as the delimiter instead of spaces (default) | |
set datafile separator '\t' | |
# skip first line with 'every ::2' in following commands | |
# First stats file to extract min time value | |
# (must be done before setting that x will be a time data serie) | |
stats "out.dat" every ::2 using 2 prefix "A" | |
# Output to a jpeg file |