mrradix commited on
Commit
28c1b35
·
verified ·
1 Parent(s): 88ab6b3

Update docs/pandas_cheatsheet.md

Browse files
Files changed (1) hide show
  1. docs/pandas_cheatsheet.md +4 -10
docs/pandas_cheatsheet.md CHANGED
@@ -1,12 +1,6 @@
1
  # Pandas Cheatsheet
2
 
3
- Pandas is a Python library used for data analysis.
4
-
5
- ## 🧱 Data Structures
6
- - `Series`: 1D array
7
- - `DataFrame`: 2D table (like Excel)
8
-
9
- ## 📥 Read Data
10
- ```python
11
- import pandas as pd
12
- df = pd.read_csv("data.csv")
 
1
  # Pandas Cheatsheet
2
 
3
+ - `df.head()` Show first rows
4
+ - `df.describe()` – Summary stats
5
+ - `df.isnull().sum()` Count missing values
6
+ - `df.fillna(value)` Fill missing