如何从 SQLAlchemy 表生成图表和统计信息?

发布于 2024-09-02 05:20:11 字数 250 浏览 3 评论 0原文

运行一系列模拟后,我将把结果输出到使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独闯女儿国 2024-09-09 05:20:11

看起来 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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文