唐宇迪Python Kaggle競賽案例實戰(zhàn)
plt.title('Fare >distribution')
plt.xlabel('Fare')
plt.ylabel('Count of Passengers')
#如果變量是categorical的,想看distribution,則可以:
df.PdDistrict.value_counts().plot(kind='bar', figsize=(8,10))如果想看幾個feature之間的聯(lián)立情況,則可以用pandas的groupby,
temp = pd.crosstab([df.Pclass, df.Sex], df.Survived.astype(bool))
temp.plot(kind='bar', stacked=True, color=['red','bl
?
標(biāo)簽: