Update docs/pandas_cheatsheet.md
Browse files- docs/pandas_cheatsheet.md +4 -10
docs/pandas_cheatsheet.md
CHANGED
|
@@ -1,12 +1,6 @@
|
|
| 1 |
# Pandas Cheatsheet
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
- `
|
| 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|