使用python在excel中生成图表
我一直在尝试在 Excel 中生成数据。 我生成了 .CSV 文件。 所以到目前为止,这很容易。 但是在Excel中生成图表非常困难...
我想知道,python是否能够在Excel中生成数据和图表? 如果有示例或代码片段,请随时发布:)
或者解决方法可以使用 python 生成图形格式的图形,如 .jpg 等,或者 .pdf 文件也可以..只要解决方法不需要依赖如需要安装boost库。
I have been trying to generate data in Excel.
I generated .CSV file.
So up to that point it's easy.
But generating graph is quite hard in Excel...
I am wondering, is python able to generate data AND graph in excel?
If there are examples or code snippets, feel free to post it :)
Or a workaround can be use python to generate graph in graphical format like .jpg, etc or .pdf file is also ok..as long as workaround doesn't need dependency such as the need to install boost library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您有 2 个选择:
如果您使用的是 Windows,则可以使用 pywin32 (包含在 ActivePython) 库,使用 OLE 自动化。
如果您只想生成基本绘图等,您可以使用 matplotlib。
You have 2 options:
If you are on windows, you can use pywin32 (included in ActivePython) library to automate Excel using OLE automation.
If all you want to just generate basic plots etc. you can use matplotlib.
我建议您在从数据文件绘制图形时尝试 gnuplot。
I suggest you to try gnuplot while drawing graph from data files.
如果您决定使用 matplotlib,请查看我的 excel 到 python 类 PyWorkbooks 来获取数据。它可以让您高效、轻松地以 numpy 数组(matplotlib 的本机数据类型)形式检索数据。
https://sourceforge.net/projects/pyworkbooks/
If you do decide to use matplotlib, check out my excel to python class PyWorkbooks to get the data. It lets you retrieve data efficiently and easily as numpy arrays (the native datatype for matplotlib).
https://sourceforge.net/projects/pyworkbooks/
@David Gau,我正在考虑做类似的事情。目前我正在考虑使用原始 csv 或将其转换为 json 并将其放入 jqplot 正在读取的文件夹中。 jquery 绘图和图形库。然后我需要做的就是让用户或我自己在任何网络浏览器中显示该图。
@David Gao, I am looking at doing something similar. Currently I am looking at using the raw csv or converting it to json and just dropping it in a folder that is being read by jqplot.jquery plotting and graphing library. Then all I need to do is have the user or myself display the plot in any web browser.
是的,Xlsxwriter[文档][pypi] 有很多用于创建 excel 的实用程序Python 中的图表。但是,您将需要使用 xlsx 文件格式,对于不正确的参数没有太多反馈,并且您无法读取输出。
Yes, Xlsxwriter[docs][pypi] has a lot of utility for creating excel charts in Python. However, you will need to use the xlsx file format, there is not much feedback for incorrect parameters, and you cannot read your output.