Basic plot example in GNUPlot
Posted: Sat Jan 08, 2022 5:38 am
1. Add data file
2. Set linestyle
3. Plot the graph
Code: Select all
# data.datCode: Select all
set style line 1 \
linecolor rgb '#0000' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 2Code: Select all
plot 'data.dat' with linespoints linestyle 1