具有插槽特定信息显示的动态 gnuplot
我可以使用 gnuplot 生成如图 image 所示的绘图(用 dia 绘制)。
我收到 3 种类型的数据包,需要绘制它们的时间线。所有时隙均以信标开始,其他 2 个数据包中的任何 1 个都可能到达给定时隙。
- 如果是的话,请建议我需要使用什么命令集。
- 我可以从实际上解码数据包内容的(python)程序调用 gnuplot 吗,而不是写入文件然后从中读取。或者是否有更好的工具可以在很多插槽上绘制此类动态内容以便进行分析
Can I use gnuplot to generate a plot as shown in image (drawn with dia).
I am receiving 3 types of packets and need to plot their timeline. All slots begin with a beacon, any 1 of the other 2 packets may arrive in a given slot.
- pls suggest what set of commands i need to use , if yes.
- can I call gnuplot from the (python)program that is actually decoding the packet content, rather than writing into a file and then reading from it. Or is there a better tool to plot such dynamic content over a lot of slots in order to analyse
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
boxxyerrorbars
,如此处所示部分框和误差线组合的绘图样式
。尽管链接的脚本使用 perl 将其转换为 python 应该不会太难...您可以使用 Gnuplot.py 在 python 中使用 gnuplot 绘制数据。
You could make use of
boxxyerrorbars
as demonstrated here in the sectionPlot styles of combination of boxes and error bars
. Although the script of the link uses perl converting it to python should not be too hard...You can use Gnuplot.py to plot data with gnuplot from within python.