在进行python数据分析的时候,使用Numpy对csv文件中读取到的数据进行分析,将数据放入数组中,本来打算进行数据从小到大的排列
python
height=Height.sort()
weight=Weight.sort()
plt.plot(height,weight,label='模拟数据')
plt.xlabel('Weight')
plt.ylabel('Height')
plt.title('演示从文件加载数据')
plt.legend()
plt.show()
因为数组使用sort()进行排序,一直会出现下面的错误提示
ValueError: x, y, and format string must not be None
ValueError:x、y和格式字符串不能为无
因为找不到是什么原因,但是换了一个排序:sorted()
之后就可以继续运行了