bgpt-paper-search
BGPT is a remote MCP server that searches a curated database of scientific papers built from raw experimental data extracted from full-text…
Maintainer K-Dense Inc. · Last updated April 1, 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
BGPT is a remote MCP server that searches a curated database of scientific papers built from raw experimental data extracted from full-text…
R ggplot2 for publication-quality genomics and omics figures.
UpSet plots for multi-set intersection visualization.
Customized volcano plots with ggplot2 or matplotlib for DE results.