Sorry to be asking a question again but this isn't making sense to me
I'm trying to change the datatype of my column into an int and did the following:
df.Age.astype(object).astype(int)
this works and it looks like it's changed to an int but then if I do
df.Age
it is then appearing as an object data type? How I can make the change permanent?