码迷,mamicode.com
首页 > 其他好文 > 详细

Matplotlib从文件绘图时Y轴坐标不正确

时间:2018-04-05 21:01:13      阅读:1709      评论:0      收藏:0      [点我收藏+]

标签:http   pen   from   end   append   png   折线图   src   转换   

问题描述:

从文件中读取X坐标和Y坐标,绘制折线图,代码和结果如下:

import matplotlib.pyplot as plt
import matplotlib.animation as animation
from matplotlib import style


    
style.use(dark_background)

fig = plt.figure()



graph_data = open(example.txt,r).read()
lines = graph_data.split(\n)
xs = []
ys = []
for line in lines:
    if len(line) > 1:
        x, y = line.split(,)
        xs.append(x)
        ys.append(y)

plt.plot(xs, ys)
plt.show()

技术分享图片

 

解决:

我想这种bug也只有计算机专业能想到吧。。。

那就是——类型错误!从文件中读到的每个x和y为字符串,应该转换成int类型。改正后:

import matplotlib.pyplot as plt
import matplotlib.animation as animation
from matplotlib import style


    
style.use(dark_background)

fig = plt.figure()



graph_data = open(example.txt,r).read()
lines = graph_data.split(\n)
xs = []
ys = []
for line in lines:
    if len(line) > 1:
        x, y = line.split(,)
        xs.append(int(x)) #注意读取到的是字符串类型
        ys.append(int(y)) 

plt.plot(xs, ys)
plt.show()

技术分享图片

 

Matplotlib从文件绘图时Y轴坐标不正确

标签:http   pen   from   end   append   png   折线图   src   转换   

原文地址:https://www.cnblogs.com/sherlock-tang/p/8724039.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!