📊
DataPython

Precise

by microprediction

Precise is a Data skill for Claude Code, published by microprediction in precise.

333 stars58 forkson microprediction/preciseAdded 2026/07/16Repository updated 2026/06/24
covariance-estimationcovariance-matrixinvestment-portfolioportfolio
Install in seconds
Install Precise
Copy Precise into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/microprediction/precise ~/.claude/skills/precise

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/microprediction/precise.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
SKILL.md in microprediction/precise
Installs to
~/.claude/skills/precise
Collection
One of 6 skills cataloged from this repository
Category
Data812 skills

What Precise does

Provides online incremental covariance, correlation, and precision estimation for streaming data. Use when updating covariance matrices per observation without recomputing from scratch.

Precise is cataloged under Data on DirSkills. Precise comes from a repository tagged covariance-estimation, covariance-matrix, investment-portfolio and portfolio.

Documentation

README

precise

precise is a small, numpy-only library of online (incremental) covariance and correlation estimators behind one sklearn-style partial_fit contract — plus a panel of assessors for scoring an estimate and a recommender for choosing one. It is the streaming complement to sklearn.covariance, whose estimators are batch-only.

pip install precise
from precise import EwaCovariance
est = EwaCovariance(r=0.05)
for y in stream:            # y is one observation (1-D)
    est.partial_fit(y)
est.covariance_             # symmetric PSD; also .correlation_ / .precision_ / .location_

Reach for precise when you see

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Precise

  • What else does microprediction publish alongside Precise?

    Precise is one of 6 skills that DirSkills catalogs from microprediction/precise, the repository it ships in. Its siblings there include Choose Covariance Estimator, Covariance Assessment and Covariance Scoring. Each one is a separate skill with its own page in this directory, installs the same way Precise does, and is maintained by microprediction in that same repository. The rest of the collection is listed on the microprediction/precise page.

  • How does Precise compare to other Data skills?

    Precise ranks #615 by stars among the 812 Data skills in this catalog. The most-starred ones next to it are Benchmark Methodology, Jupyter Notebook and Solana. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Precise against them. Open each page to compare what they document and how they install.

More from microprediction/precise

Precise is one of 6 skills cataloged on DirSkills from microprediction/precise.

See all 6 skills