Agent skill
data-analysis-polars-high-performance-processing
Sub-skill of data-analysis: Polars High-Performance Processing (+5).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/data/analysis/data-analysis/polars-high-performance-processing
SKILL.md
Polars High-Performance Processing (+5)
Polars High-Performance Processing
import polars as pl
# Read large CSV with lazy evaluation
df = pl.scan_csv("large_data.csv")
# Chain operations efficiently
result = (
df
.filter(pl.col("date") >= "2025-01-01")
*See sub-skills for full details.*
## Streamlit Data App
```python
import streamlit as st
import polars as pl
import plotly.express as px
st.set_page_config(page_title="Sales Dashboard", layout="wide")
st.title("Sales Analytics Dashboard")
# Sidebar filters
st.sidebar.header("Filters")
*See sub-skills for full details.*
## Dash Production Dashboard
```python
from dash import Dash, html, dcc, callback, Output, Input
import plotly.express as px
import polars as pl
app = Dash(__name__)
# Layout
app.layout = html.Div([
html.H1("Analytics Dashboard"),
*See sub-skills for full details.*
## YData Profiling Report
```python
from ydata_profiling import ProfileReport
import polars as pl
# Load data
df = pl.read_csv("dataset.csv").to_pandas()
# Generate comprehensive report
profile = ProfileReport(
df,
*See sub-skills for full details.*
## Great Tables Publication Output
```python
from great_tables import GT, md, html
import polars as pl
# Prepare summary data
summary = (
pl.read_parquet("sales.parquet")
.group_by("product_category")
.agg([
pl.col("revenue").sum().alias("total_revenue"),
*See sub-skills for full details.*
## Sweetviz Comparison Report
```python
import sweetviz as sv
import polars as pl
# Load datasets
train_df = pl.read_csv("train.csv").to_pandas()
test_df = pl.read_csv("test.csv").to_pandas()
# Compare train vs test
comparison_report = sv.compare([train_df, "Training"], [test_df, "Test"])
*See sub-skills for full details.*
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?