我有一个疑问。如何通过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
型
我想用两个数据制作这个表单。
我想知道如何旋转B图
我不在乎一个标签旋转。
1条答案
按热度按时间1tuwyuhd1#
OP的原标题“如何通过gnuplot旋转图形”并没有描述完整的故事。实际上是关于创建一个横向直方图。
下面的例子说明了Christoph在评论中基本上提到的内容。
脚本:
字符串
结果:
的数据