Я могу построить кумулятивный график, используя этот входной файл:
set key top left
set xtics font 'Arial,18'
set terminal pdf solid font 'Arial,18' # pdf files are great for inkscape
set output 'cumulative.pdf'
unset xtics; unset ytics # Remove all tics
set ytics nomirror # Only have tics on left
set xtics nomirror # Only have tics on bottom
set border 3 # Only have border on bottom and left
set xrange [50:170]
#set yrange [0:10000]
set xtics 50,10,170
#set ytics 0,20,100
set tics out nomirror
plot "1.3SLN-all.txt" using 1:(.0000401) smooth cumul title "1.3SLN", \
"1.6SLN-all.txt" using 1:(.0000401) smooth cumul title "1.6SLN", \
"2.3SDLN-all.txt" using 1:(.0000401) smooth cumul title "2.3SDLN", \
"2.6SDLN-all.txt" using 1:(.0000401) smooth cumul title "2.6SDLN", \
"3.3STLN-all.txt" using 1:(.0000401) smooth cumul title "3.3STLN", \
"3.6STLN-all.txt" using 1:(.0000401) smooth cumul title "3.6STLN"
Это дает следующий график:
Файлы данных выглядят следующим образом:
52.712
52.246
52.391
53.814
52.260
57.365
58.331
53.628
55.391
55.422
et c
Я хочу инвертировать его, чтобы оно накапливалось от наибольшего числа к наименьшему. Примерно так:
Который я редактировал. Я думал сделать все свои числа отрицательными, а затем отредактировать ось позже, но это не очень меня устраивало.