I am trying to convert a 2 digit year to a 4 digit year using this command:
df['year'] = df['year'].strftime('%Y')
this is the error: AttributeError: 'Series' object has no attribute 'strftime'
I get, not sure why its not working I have used this command many times before.