mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-24 15:00:31 +08:00
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
799 B
799 B
Reading Data
Pandas provides functions to load data from many formats: pd.read_csv(), pd.read_excel(), pd.read_json(), pd.read_parquet(), pd.read_sql(), and others. Each function returns a DataFrame and accepts parameters for handling headers, delimiters, encoding, and data types. Reading data is always the first step in a Pandas workflow.
Visit the following resources to learn more: