如何通过gnuplot旋转图形

时间:2017-05-26 06:56:20

标签: linux rotation gnuplot

我有一个疑问。如何通过gnuplot旋转绘图?

---------------------------
Row data.

0.000   0.0000157

0.001   0.0491343

0.002   0.0644647

0.003   0.0637064

0.004   0.063162
…
30.000  1.70000
---------------------------

我使用低数据制作了两个图(A),(B)。

(A)数字命令

gnuplot> plot "RMSD_DATA.txt" using 1:2 with line

(B)图命令

bin_width = 0.001

bin_number(x) = floor(x/bin_width)

rounded(x) = bin_width * bin_number(x)

plot "MY_RMSD.txt" using (rounded($2)):(2) smooth frequency with line

我想使用两个数据制作此表单。 enter image description here

所以,我想知道旋转B图。

我不关心LABEL旋转。

1 个答案:

答案 0 :(得分:1)

要“反转功能”,只需修改“绘图”行即可:

plot "MY_RMSD.txt" using 2:(rounded($2)) smooth frequency with line

在反转轴时,您可以在绘制之前设置范围,反转最大值和最小值:

set yrange [Max:Min]

(如果我很好理解,在您的情况下,Min = 0,Max = 30。)