Iterating Over Rows in Pandas

Ben Cook • Posted 2021-01-29 • Last updated 2021-10-15

When you absolutely have to iterate over rows in a Pandas DataFrame, use the .itertuples() method.

Dropping Columns and Rows in Pandas

Ben Cook • Posted 2021-01-14 • Last updated 2021-10-15

There are a few ways to drop columns and rows in Pandas. This post describes the easiest way to do it and provides a few alternatives that can sometimes be useful.

How to Use the Pandas Melt Command

Ben Cook • Posted 2020-12-22 • Last updated 2021-10-15

The Pandas melt command unpivots tabular data, transforming it from wide to long format. To understand this operation, you have to know…