Pandas Basics: Read CSV, Filter, GroupBy (What I Use Most)

Data Scientist 9 min min read Updated: Mar 05, 2026
Pandas Basics: Read CSV, Filter, GroupBy (What I Use Most)
Topic 2 of 5

Pandas Basics

import pandas as pd
df = pd.read_csv("data.csv")
df[df["age"] > 18].groupby("city")["salary"].mean()

These 3 actions (read, filter, groupby) cover most daily tasks.

Related: NumPy Basics

Get Newsletter

Subscibe to our newsletter and we will notify you about the newest updates on Edugators