Skip to content
Advertisement

AttributeError: module ‘pandas’ has no attribute ‘get_dummes’

I follow documentation here: https://pandas.pydata.org/docs/reference/api/pandas.get_dummies.html and I would like to create dummies using get_dummes() My code:

mydf.get_dummes(mydf, columns = ['payment_id'])

but I get an error AttributeError: 'DataFrame' object has no attribute 'get_dummes'. I use pandas 1.3.4. Why?

Advertisement

Answer

I think it supposed to be get_dummies(). There is a typo in your method

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement