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
438 changes: 438 additions & 0 deletions playground/astype.html

Large diffs are not rendered by default.

439 changes: 439 additions & 0 deletions playground/idxmin_idxmax.html

Large diffs are not rendered by default.

20 changes: 20 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,21 @@ <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="idxmin_idxmax.html" style="color: var(--accent); text-decoration: none;">πŸ”Ž idxmin / idxmax</a></h3>
<p>Return the index label of the minimum or maximum value. idxminSeries(), idxmaxSeries(), idxminDataFrame(), idxmaxDataFrame() with skipna support.</p>
<div class="status done">βœ… Complete</div>
</div>
<div class="feature-card">
<h3><a href="astype.html" style="color: var(--accent); text-decoration: none;">πŸ”„ astype</a></h3>
<p>Cast Series and DataFrame values to a different dtype. astypeSeries(), astype() with per-column mapping support and integer clamping.</p>
<div class="status done">βœ… Complete</div>
</div>
</div>
</section>
</main>
Expand Down
Loading