You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using read_excel to read excel files, I have to install xlrd. read_excel has parameter engine, but its value only can be None or xlrd. ExcelWrite can use openpyxl as engine.
Why we cannot use openpyxl to read excel files in pandas? Or whether I can or not?
The text was updated successfully, but these errors were encountered:
@chris-b1 xlrd may be mature but it's XLSX support is limited. For example charts, images, formatting, pivot tables are all supported by openpyxl. xlrd is, at the time of writing, faster but this will change once openpyxl 2.6 is released.
Thanks for the color @Themanwithoutaplan - definitely didn't mean to disparage openpyxl, only meant for our purposes (not currently reading any formatting, charts, etc) xlrd works well. If performance is improved in 2.6 definitely would be excited for that as an option!
When using
read_excel
to read excel files, I have to installxlrd.
read_excel
has parameterengine,
but its value only can beNone
orxlrd.
ExcelWrite
can useopenpyxl
asengine.
Why we cannot use
openpyxl
to read excel files inpandas
? Or whether I can or not?The text was updated successfully, but these errors were encountered: