分割轴的范围,以减少空白
我想删除图表中未与其他数据一起使用的特定 xtic 值(小时轴)。准确地说,我想保留以下 Xrange [0:5, 12:14],但不保留 xrange [6:11]。这是为了帮助分隔我的数据,因为未使用的空间目前正在将它们粉碎在一起。我将附上一张图片来形象化。感谢您的帮助
我尝试了“set xrange [0:5, 12:14]”,但没有成功工作。
I would like to remove specific xtic values (hours axis) in my graph that are not being used with other data. To be precise, I want to keep the following Xranges [0:5, 12:14], but not the xrange [6:11]. This is to help space out my data, since the unused space is currently smashing them together. I will attach a picture to visualize. Thank you for any help
I tried 'set xrange [0:5, 12:14]' but it did not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
了解数据的确切结构非常重要,因为绘图代码需要适应它。
对于以下示例,数据结构如下:
xy z
数据。0 1 2 3 5 12 14
),而 y 和 z 则不同。index
寻址这些块(检查帮助索引
)。为此,您可以使用伪列 -2(查看
helppseudocolumns
),其中包含从 0 开始的块号。helpxticlabels
)。代码:
结果:
It is important to know the exact structure of the data because the plotting code needs to adapt to it.
For the following example the data structure is as follows:
x y z
data.0 1 2 3 5 12 14
) whereas y and z vary.index
(checkhelp index
).For this, you can use the pseudocolumn -2 (check
help pseudocolumns
) which contains the block number starting from 0.help xticlabels
).Code:
Result: