area plot df.top5.plot(kind='area') df_top5.index = df_top5.index.map(int) df_top5.plot(kind='area', stacked=True, figsize=(20, 10)) # pass a tuple (x, y) size plt.title('Immigration Trend of Top 5 Countries') plt.ylabel('Number of Immigrants') plt.xlabel('Years') plt.show() histogram ### type your answer here df_cof =df_can.loc[['Greece', 'Albania', 'Bulgaria'], years] df_cof=df_cof.transpose()..