diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-11-18 23:40:21 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-11-18 23:40:21 +0300 |
commit | 89d26d5d0e8ff2b026cc99606868699f6fcc08db (patch) | |
tree | 22181a56c8a1cf2ecae3c167402898c7aed38fb8 /tempalte/plots.gp | |
parent | e1bf912316b7f156218aaf5d8571443e47d880ed (diff) |
added tempalte
Diffstat (limited to 'tempalte/plots.gp')
-rw-r--r-- | tempalte/plots.gp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tempalte/plots.gp b/tempalte/plots.gp new file mode 100644 index 0000000..702408a --- /dev/null +++ b/tempalte/plots.gp @@ -0,0 +1,14 @@ +set term pngcairo size 1000, 800 +set tmargin at screen 0.95 + +f1(x) = a1*x+b1 +fit f1(x) '.plot' using 1:2:3 yerr via a1, b1 + +set output '' +set label "" at graph 0.5, graph 1.025 center +set xlabel "" +set ylabel "" + +plot '.plot' using 1:2:3 with yerrorbars notitle lc 0 pt 1 lw 2, \ + f1(x) title "" lc rgb "red", \ + |