set key font ",12" right
#nastaví velikost písma legendy
set key outside #nastavi legendu vne grafu
set key autotitle columnheader # nastaví legendu grafu podle prvního sloupce
set title "TESTOVACI GRAF" font ",15" # nadpis grafu
set style line 100 lt 1 lc rgb "black" lw 1 # všechny čáry budou černé
set grid ls 100
set style data lines # vkreslení dat jako spojenou čáru
set xlabel "frequency [GHz]" font ",15"
set ylabel "reflection coefficient [dB]" font ",15"
set tic scale 5 # y tic
set ytics 0.2 font ",15"
set xrange [1:10] # set x axis range
set yrange [-1:1] # set y axis range
set xtics 1 font ",15" # set tic at the x axis
n = "test.csv" # zjednodušení jména souboru ze kterého pochází data pro graf
plot n using 1:2 ls 1, n using 1:3 ls 1
Žádné komentáře:
Okomentovat