Python Matplotlib散点图看起来很乱

时间:2018-11-24 03:55:25

标签: python-3.x

伙计们,我只是试图使用matplotlib.pyplot绘制数据集,但是该绘制看起来很乏味和凌乱,不是我期望的那样。我是在python上使用图形的新手,所以有人知道这是什么错误吗?基本上,x和y轴看起来很填充,显示了所有x和y列表数据。

import matplotlib.pyplot as plt

inFile_name = 'ex1data1.txt'
inFile = open(inFile_name, 'r')
population = []
profit = []
count = 0
for line in inFile:
    line.strip()
    (pop_d, pro_d) = line.split(',')
    population.append(pop_d)
    profit.append(pro_d)
plt.scatter(population, profit)
plt.xlabel('population')
plt.ylabel('profit')
plt.title('MLexercise')
plt.show()
print(profit)

enter image description here

0 个答案:

没有答案