I have a pandas series that was created by the groupy method, this is how it looks:
release_year  genres  
1960          Drama       13
              Action       8
              Comedy       8
              Horror       7
              Romance      6
                          ..
2015          Music       33
              TV Movie    20
              History     15
              War          9
              Western      6
what I want to do is create a data frame that has the "release_years" as indexes, the "genres" as column labels and the value counts as the rows
 
    