mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-21 12:44:00 +08:00
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
766 B
766 B
Indexing & Slicing
Pandas provides two primary indexing systems: .loc[] for label-based selection and .iloc[] for position-based selection. Both work on rows, columns, or both simultaneously. Boolean indexing with a condition (e.g., df[df['age'] > 30]) is the most common way to filter rows.
Visit the following resources to learn more: