Dask
Dask is a Python library for parallel and distributed computing that enables three critical capabilities: - **Larger-than-memory execution**…
Maintainer K-Dense Inc. · Last updated March 31, 2026
Polars is a lightning-fast DataFrame library for Python and Rust built on Apache Arrow. Work with Polars' expression-based API, la.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/polars
Skill Snapshot
Source Doc
Install Polars:
Basic DataFrame creation and operations:
import polars as pl
## Add computed columns
df.with_columns(
age_plus_10=pl.col("age") + 10
)
Expressions are the fundamental building blocks of Polars operations. They describe transformations on data and can be composed, reused, and optimized.
Key principles:
pl.col("column_name") to reference columnsExample:
Related skills
Dask is a Python library for parallel and distributed computing that enables three critical capabilities: - **Larger-than-memory execution**…
Perform comprehensive exploratory data analysis (EDA) on scientific data files across multiple domains. This skill provides automated file t…
GeoPandas extends pandas to enable spatial operations on geometric types. It combines the capabilities of pandas and shapely for geospatial…
NetworkX is a Python package for creating, manipulating, and analy.