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
15 changes: 15 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 All @@ -264,6 +269,16 @@ <h3><a href="multi_index.html" style="color: var(--accent); text-decoration: non
<p>Hierarchical indexing. MultiIndex for multi-level row and column labels with fromArrays, fromTuples, fromProduct, level access, and swapLevels.</p>
<div class="status done">βœ… Complete</div>
</div>
<div class="feature-card">
<h3><a href="pct_change.html" style="color: var(--accent); text-decoration: none;">πŸ“Š pct_change</a></h3>
<p>Fractional change between elements. pctChangeSeries() and pctChangeDataFrame() with periods, fillMethod (pad/bfill), limit, and axis options.</p>
<div class="status done">βœ… Complete</div>
</div>
<div class="feature-card">
<h3><a href="where_mask.html" style="color: var(--accent); text-decoration: none;">🎭 where / mask</a></h3>
<p>Conditional keep/replace for Series and DataFrame. whereSeries(), maskSeries(), whereDataFrame(), maskDataFrame() β€” mirrors pandas .where() and .mask().</p>
<div class="status done">βœ… Complete</div>
</div>
</div>
</section>
</main>
Expand Down
Loading