def main():
seaborn_Seaborn_Module.set_style("dark")
housing_2013 = pandas_Pandas_Module.read_csv("../Hud_2013.csv")
cols = ['AGE1', 'FMR', 'TOTSAL']
filtered_housing_2013 = housing_2013[cols]
filtered_housing_2013.hist(column='FMR', bins=20)
matplotlib_pyplot_Pyplot_Module.show()
评论列表
文章目录