Pandas Excel: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
=External= | |||
* https://pandas.pydata.org/docs/reference/api/pandas.read_excel.html | |||
=Internal= | =Internal= | ||
* [[Pandas_Concepts#Excel|Pandas Concepts]] | * [[Pandas_Concepts#Excel|Pandas Concepts]] | ||
=Procedure= | =Procedure= |
Latest revision as of 03:16, 31 October 2023
External
Internal
Procedure
Install openpyxl:
pip3 install openpyxl
df = pd.DataFrame(pd.read_excel('./some_file.xlsx', parse_dates=["Date"]))