Pandas Data Wrangling

Cleaning, filtering, merging, and aggregating massive tabular data structures using Pandas.

Lord1Egypt Updated 2 repo stars

File contents

Pandas Data Wrangling

Overview

Pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool.

When to Use This Skill

Use to clean messy data files, calculate data summaries, or handle tabular outputs in python tasks.

Quick Start (with runnable code examples)

import pandas as pd

# Load dataset
df = pd.DataFrame({"Name": ["Akim", "Lord"], "Score": [95, 98]})
# Filter and output
high_scores = df[df["Score"] > 96]
print(high_scores)

Advanced Usage

Implement groupby pivot queries, merge databases, handle missing nan values, and export files to Excel sheets.

Key References

Dependencies

  • pandas>=2.0.0

Lord1Egypt/ai-skillforge/tree/main/skills/gemini/pandas-data-wrangling commit 4f25814dee

Frequently asked questions

npx skillmds@latest add lord1egypt/pandas-data-wrangling