I have a date column of the format YYYY-MM-DD. I want to slice the only year and month from it. But I don't want the "-" as I have to later convert it into an integer to feed into my linear regression model. It's current datatype is "object".
Dataframe :-
         date   open  close   high    low
0  2019-10-08  56.46  56.10  57.02  56.08
1  2019-10-09  56.76  56.76  56.95  56.41
2  2019-10-10  56.98  57.52  57.61  56.83
3  2019-10-11  58.24  59.05  59.41  58.08
4  2019-10-14  58.73  58.97  59.53  58.67
 
     
    