aboutsummaryrefslogtreecommitdiffstats
path: root/101/plots.gp
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-11-24 19:47:38 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-11-24 19:47:38 +0300
commit8237f82ebd2299addc6dec837d5f850cc5fd1b5c (patch)
tree06f32b24512f54a466e4bd6a0e3d51d0bcf68aef /101/plots.gp
parent33e3d9540237b0faef3c7d9aeab6dedbccbe3707 (diff)
parentfcf77faf19dcb9d75b7842ec7138551bd73418cf (diff)
Merge remote-tracking branch 'origin/master'
Diffstat (limited to '101/plots.gp')
-rw-r--r--101/plots.gp14
1 files changed, 14 insertions, 0 deletions
diff --git a/101/plots.gp b/101/plots.gp
new file mode 100644
index 0000000..702408a
--- /dev/null
+++ b/101/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", \
+