This is my original df.info() Please see the attached image, its the df.info() for my original df.
I want to put in a date column %Y-%m-%d that is a date type (i.e. column 16, its currently marked as Day, I meant date, it needs to be based on the Data/Time which is a timestamp). My date columns keeps turning up as objects, I don't know how to make them dates. Once I have that column in there I need to groupby on that date column, and I want the resulting dataframe to know that column is a date as well. I don't know how to perform operations and ensure that pandas will know the resulting column is a date. If I can solve that i think all my issues go away.
So what I want is to get column 16, my date column, to be a date type. I created it using df["Day"]=df["Date/Time"].dt.date, thinking that would make it a date.