是否可以在 Qt/Qwt 中绘制小提琴图?
我正在尝试使用 Qt 实现小提琴图。我在互联网上查找了有关此事的资源,但到目前为止我只找到了使用 R 和 Python 实现的示例。 Qt(或者 Qwt)是否拥有实现这些功能的相关工具,或者我应该切换我的平台?谢谢。
I am trying to implement violin plots using Qt. I have checked the internet for resources about the matter but so far I have only found examples that have been implemented using R and Python. Does Qt -or maybe Qwt for that matter- possess the relevant tools to implement these, or should I switch my platform? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Qt 有一套各种绘图工具,因为小提琴图与任何其他图表没有什么不同,您应该能够轻松地使用 QPainter 自己绘制它们。
需要明确的是,我正在谈论绘制小提琴图,您当然必须自己实现数学和数据结构。
Qt has a suite of various drawing tools, as violin plots are no different to any other diagram, you should easily be able to draw them yourself using
QPainter
.Just to be clear, I'm talking about drawing violin plots, you will of course have to implement the math and data structures for them yourself.