'DataFrame' object has no attribute 'parse'

Lalit
Level 1
'DataFrame' object has no attribute 'parse'

getting this error while parse Excel file

0 Kudos
1 Reply
MiguelangelC
Dataiker

Hi Lalit,

Indeed, pandas dataframe objects do not have a 'parse' attribute as we can see in their documentation: https://pandas.pydata.org/docs/reference/frame.html

 

Most likely, on processing the Excel file pd.read_excel was used instead of pd.ExcelFile

0 Kudos