在 Python 中绘制表格/图表/网格

发布于 2024-10-19 16:07:10 字数 237 浏览 2 评论 0原文

假设用户输入他的文件。格式类似于:

Name\t182909876\n
Name 2\t090090090\n
etc...

我想将这些数据绘制到图表、网格或表格上。

data_list = []
with infile as f:
    data = [map(str, line.split('\t')) for line in f]

Assume the user inputs his file. The format is something like:

Name\t182909876\n
Name 2\t090090090\n
etc...

I want to plot this data onto a chart, a grid, or a table.

data_list = []
with infile as f:
    data = [map(str, line.split('\t')) for line in f]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冷心人i 2024-10-26 16:07:10

matplotlib 是您绘制数字所需的工具。数字。看到上面的代码生成了嵌套的字符串列表,您可能必须即兴创作..

matplotlib is what you need to plot numbers. Seeing that your code above generates nested lists of strings, you might have to improvise ..

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