我有一个带有邮政编码的CSV文件以及每个邮政编码的相应编号。我想用直方图绘制它,但现在只显示轴,没有实际信息。
import pandas as pd
import matplotlib.pyplot as plt
installedbase = 'zipcode.csv'
df = pd.read_csv(installedbase)
df.plot(x = 'zip_code_installed', y = 'installed_NP', kind = 'hist', rwidth = .5, bins = 1000 )
plt.xlabel('zip code')
plt.ylabel('NP sum')
plt.axis([9000,9650,0,6400])
plt.show()
我正在使用pandas和matplotlib进行绘图。 “x”和“y”都设置为我的CSV文件中的不同列。