赞
踩
求大佬解读 Python中的numpy的问题
import matplotlib.pyplot as plt
import numpy as np
x, y = np.loadtxt(‘P00000001-ALL.csv’,dtype = np.int, delimiter=’,’, unpack=True)
plt.plot(x,y, label=‘Loaded from file!’)
plt.xlabel(‘x’)
plt.ylabel(‘y’)
plt.title(‘Interesting Graph\nCheck it out’)
plt.legend()
plt.show()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。