Basic plot example in GNUPlot

GNUplot related topics
Post Reply
User avatar
amh
Site Admin
Posts: 263
Joined: Thu Jan 06, 2022 12:35 am

Basic plot example in GNUPlot

Post by amh »

1. Add data file

Code: Select all

# data.dat
2. Set linestyle

Code: Select all

set style line 1 \
    linecolor rgb '#0000' \
    linetype 1 linewidth 3 \
    pointtype 7 pointsize 2
3. Plot the graph

Code: Select all

plot 'data.dat' with linespoints linestyle 1
Post Reply