Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- df.reset_index().pivot('id','cholesterol','age').hist()
- plt.show()
- ############################################################################################
- plt.figure(figsize=(20,10), dpi = 250)
- df.hist('age', by='cholesterol')
- plt.show()
- ##########################################################################################
- df_age_chol.groupby('age').cholesterol.value_counts().unstack().plot.bar(width=1, stacked=True)
- plt.title('Cholesterol Levels by Age')
- plt.show()
- ##########################################################################################
- df_age_chol = df[['age', 'cholesterol']].copy()
- df_age_chol['cholesterol'] = df_age_chol['cholesterol'].replace({1: 'normal', 2: 'above normal',
- 3: 'well above normal'})
- g = sns.FacetGrid(df_age_chol, row = 'cholesterol', height = 2, aspect = 3)
- g = g.map(plt.hist, 'age')
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement