在 Python 中绘制表格/图表/网格
假设用户输入他的文件。格式类似于:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
matplotlib 是您绘制数字所需的工具。数字。看到上面的代码生成了嵌套的字符串列表,您可能必须即兴创作..
matplotlib is what you need to plot numbers. Seeing that your code above generates nested lists of strings, you might have to improvise ..