I have dataframe total_year which contains three columns(year,action,comedy) .
total_year
i want to plot year column on X axis and (action & comedy) both on Y axis.
How i can plot two columns(aciton and comedy) on Y axis. Here is my code. it plot only 1 column on Y axis.
total_year[-15:].plot(x='year', y='action' ,figsize=(10,5), grid=True )