diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-12-02 16:25:59 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-12-02 16:25:59 +0300 |
commit | 3fd86ca01c1d2b0e6e8ffe46de12d6e68054a217 (patch) | |
tree | 4670a617978e1c1a6e348d8c0b59ced106fd4e0a /118/plots.gp | |
parent | 1e4e6f1e06d51712954579b89dc0a7e2c298667e (diff) | |
parent | 17c1a6895263eb31bdfb8859cb5ebc7255dae23c (diff) |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to '118/plots.gp')
-rw-r--r-- | 118/plots.gp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/118/plots.gp b/118/plots.gp new file mode 100644 index 0000000..702408a --- /dev/null +++ b/118/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", \ + |