python科学计算库matplotlib(ix[ ] 函数的学习问题)

007.python科学计算库matplotlib

import matplotib.pyplot as plt
import pands as pd
from numpy import arange
reviews = pd.read_csv('fandango_score_comparison.csv')
cols = ['FILM','RT_user_norm','Metacritic_user_nom','IMDB_norm','Fandango_Ratingvalue','Fandango_Stars']
norm_reviews = reviews[cols]
num_cols = ['RT_user_norm','Metacritic_user_nom','IMDB_norm','Fandango_Ratingvalue','Fandango_Stars']

#部分资料会使用norm_reviews.ix[ ], ix[ ]表示获取第i行的num_cols中的数据, i从索引0开始
#但会出现python提示ix[ ] 函数已过期, 提示建议使用loc[ ] , 所以这里作者使用loc[ ]
#获取的数据既相对于条形图的高度

bar_heights = norm_reviews.loc[0, num_cols].values
print(bar_heights)   # [4.3 3.55 3.9 4.5 5.0]

#条形图的位置, 既在x轴上距离y轴的距离

bar_positions = arange(5) + 0.75
print(bar_positions)     # [0.75 1.75 2.75 3.75 4.75]
fig, ax = plt.subplots()

#条形图的宽度为0.3

ax.bar(bar_positions, bar_heights, 0.3)
plt.show()

python科学计算库matplotlib(ix[ ] 函数的学习问题)_第1张图片

你可能感兴趣的:(python科学计算库)