Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions playground/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,11 @@ <h3><a href="elem_ops.html" style="color: var(--accent); text-decoration: none;"
<p>Element-wise transformations. clip(), seriesAbs(), seriesRound() for Series and DataFrame with min/max bounds, decimal precision, and axis support.</p>
<div class="status done">βœ… Complete</div>
</div>
<div class="feature-card">
<h3><a href="na_ops.html" style="color: var(--accent); text-decoration: none;">πŸ” missing-value ops</a></h3>
<p>Detect and fill missing values. isna(), notna(), isnull(), notnull() for scalars/Series/DataFrame. ffillSeries(), bfillSeries(), dataFrameFfill(), dataFrameBfill() with optional limit and axis support.</p>
<div class="status done">βœ… Complete</div>
</div>
<div class="feature-card">
<h3><a href="value_counts.html" style="color: var(--accent); text-decoration: none;">πŸ”’ value_counts</a></h3>
<p>Count unique values. valueCounts() for Series and dataFrameValueCounts() for DataFrame with normalize, sort, ascending, and dropna options.</p>
Expand Down
Loading