I have a dataframe that looks like this
    Year  Season
    2000  Winter
    2002  Winter
    2002  Summer
    2004  Summer
    2006  Winter
and I want to be able to remove all the rows with Winter so it look like this
    Year  Season
    2002  Summer
    2004  Summer
 
     
    