如何从 SQLAlchemy 表生成图表和统计信息?
运行一系列模拟后,我将把结果输出到使用 SQLAlchemy 创建的表中。我计划使用这些数据来生成统计数据 - 均值和方差是关键。这些反过来将用于生成一些图表 - 特别是直方图/折线图、饼图和盒须图。
我知道像 matplotlib
这样的 Python 图形库。问题是,我不确定如何将其与数据库表中包含的信息集成。
关于如何让这两个互相玩有什么建议吗?
主要问题是我不确定如何将信息作为“数据集”提供给图形库。
After running a bunch of simulations I'm going to be outputting the results into a table created using SQLAlchemy. I plan to use this data to generate statistics - mean and variance being key. These, in turn, will be used to generate some graphs - histograms/line graphs, pie-charts and box-and-whisker plots specifically.
I'm aware of the Python graphing libraries like matplotlib
. The thing is, I'm not sure how to have this integrate with the information contained within the database tables.
Any suggestions on how to make these two play with each other?
The main problem is that I'm not sure how to supply the information as "data sets" to the graphing library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 matplotlib 采用简单的 python 数据类型 - 数字列表等,因此您需要编写自定义代码来管理从 mysql/sqlalchemy 中提取的内容以输入到图形函数中...
It looks like matplotlib takes simple python data types -- lists of numbers, etc, so you'll be need to write custom code to massage what you pull out of mysql/sqlalchemy for input into the graphing functions...