伙计们,我只是试图使用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)