Skip to main content

fdars – Functional Data Analysis for Python

CI PyPI MIT licensed Claude Code Plugin Status: Experimental

High-performance Functional Data Analysis for Python, powered by a Rust backend (fdars-core).

The Fdata Class

The central object in fdars is Fdata — a functional data container that bundles observation data, evaluation grid, identifiers, and metadata into a single object (mirroring the R package's fdata class).

import numpy as np
import pandas as pd
from fdars import Fdata

# Create functional data: 30 sine curves on [0, 1]
t = np.linspace(0, 1, 100)
X = np.array([np.sin(2 * np.pi * t + p) + np.random.normal(0, 0.1, 100)
              for p in np.random.uniform(0, np.pi, 30)])

# Attach metadata as a pandas DataFrame
meta = pd.DataFrame({"group": ["A"] * 15 + ["B"] * 15,
                      "score": np.random.randn(30)})
fd = Fdata(X, argvals=t, metadata=meta)
fd
# Fdata (1D)  –  30 obs × 100 points  –  range [0.0, 1.0]  –  metadata: group, score

# Subset — metadata DataFrame and IDs are preserved
fd_sub = fd[0:10]
fd_sub.metadata  # DataFrame with 10 rows

# Methods delegate to the Rust backend
mu = fd.mean()                    # pointwise mean
fd_c = fd.center()                # centered Fdata
d1 = fd.deriv(nderiv=1)           # first derivative (returns Fdata)
norms = fd.norm(p=2.0)            # L2 norms per curve
depths = fd.depth("fraiman_muniz") # depth values
D = fd.distance(method="lp")      # self-distance matrix

# 2D surfaces work the same way
surfaces = np.random.randn(5, 8, 10)       # 5 surfaces on 8×10 grid
fd2d = Fdata(surfaces, argvals=(np.arange(8), np.arange(10)))

You can still call low-level functions directly with raw NumPy arrays:

from fdars.depth import fraiman_muniz_1d
from fdars.metric import lp_self_1d
from fdars.clustering import kmeans_fd

depths = fraiman_muniz_1d(X, X)
D = lp_self_1d(X, t, p=2.0)
result = kmeans_fd(X, t, k=3, seed=42)

Modules

Module Description
fdars.Fdata Functional data container (1D curves, 2D surfaces) with metadata
fdars.fdata Low-level functional data operations (mean, derivatives, norms, centering)
fdars.depth Depth functions (Fraiman-Muniz, modal, band, random projection, …)
fdars.metric Distance metrics (Lp, Hausdorff, DTW, soft-DTW, Fourier, h-shift)
fdars.basis Basis representations (B-splines, P-splines, Fourier)
fdars.smoothing Nonparametric smoothing (Nadaraya-Watson, local polynomial, k-NN)
fdars.clustering Clustering (k-means, fuzzy c-means, GMM)
fdars.regression Regression (FPC linear, PLS, nonparametric, robust, FOSR, FANOVA)
fdars.alignment Elastic alignment (SRSF, Karcher mean, elastic FPCA)
fdars.outliers Outlier detection (LRT, outliergram, magnitude-shape)
fdars.seasonal Seasonal analysis (SAZED, autoperiod, STL, peak detection)
fdars.spm Statistical process monitoring (Phase I/II, EWMA, CUSUM)
fdars.classification Classification (LDA, QDA, k-NN, kernel with cross-validation)
fdars.tolerance Tolerance bands (FPCA, conformal, Degras SCB)
fdars.conformal Conformal prediction (split, jackknife+)
fdars.simulation Simulation (Karhunen-Loève, Gaussian processes)
fdars.explain Explainability (SHAP, PDP, permutation importance, significant regions)

Quick Start

git clone https://github.com/sipemu/pyfda.git
cd pyfda
python -m venv .venv && source .venv/bin/activate
pip install maturin numpy
maturin develop --release

The package exposes 16 submodules wrapping 130+ functions with zero-copy NumPy conversion. Requires Python >= 3.9.

Documentation

Optional extras

The base package imports with zero optional dependencies. Feature layers install as extras:

pip install "fdars[sklearn]"   # scikit-learn estimator layer (fit/transform/predict)
pip install "fdars[advisor]"   # grounded parameter advisor (pydantic + Anthropic)
pip install "fdars[plot]"      # matplotlib plotting helpers
  • [sklearn] installs scikit-learn (>=1.3,<1.7 on Python 3.9, >=1.3 on 3.10+) and enables the fdars.sklearn layer: 28 estimators that pass the full check_estimator battery and plug into Pipeline / GridSearchCV / cross_val_score. The base package still imports with zero scikit-learn installed. See the scikit-learn API docs.
  • [advisor] enables the offline diagnostics + grounded advise() layer; provider extras ([openai], [gemini], [ollama]) swap the LLM backend.

Claude Code plugin (Agent Skills)

This repo doubles as a Claude Code plugin marketplace. Two Agent Skills ship with it:

  • fdars-capabilities — discover the full API surface: list modules and callables, get a call signature and one-line purpose, and find the right method for a task.
  • fdars-advisor — grounded parameter tuning and before/after diagnostics (clustering, smoothing, FPCA, alignment, depth, outliers, classification, regression, SPM).

Install them from the built-in marketplace:

/plugin marketplace add sipemu/pyfda
/plugin install fdars@pyfda

They then appear as /fdars:fdars-capabilities and /fdars:fdars-advisor and are auto-invoked from their descriptions. fdars-advisor needs the fdars package installed in the skill's execution environment (see Optional extras above and the skill's SKILL.md).

Development

# Install dev dependencies
pip install maturin numpy pytest matplotlib

# Build in development mode
maturin develop

# Run tests
pytest tests/

# Build documentation
pip install mkdocs-material
mkdocs serve

MSRV

The minimum supported Rust version is 1.83.

License

MIT — see LICENSE.

Release files for fdars 0.13.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for fdars 0.13.0
File Size Uploaded
fdars-0.13.0.tar.gz 6.3 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for fdars 0.13.0
File
fdars-0.13.0-cp39-abi3-win_amd64.whl CPython 3.9 abi3 Windows x86-64 Details
fdars-0.13.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 abi3 Linux glibc 2.17+ x86-64 Details
fdars-0.13.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 abi3 Linux glibc 2.17+ ARM64 Details
fdars-0.13.0-cp39-abi3-macosx_11_0_arm64.whl CPython 3.9 abi3 macOS 11.0+ ARM64 Details
fdars-0.13.0-cp39-abi3-macosx_10_12_x86_64.whl CPython 3.9 abi3 macOS 10.12+ x86-64 Details

Total release size: 24.2 MB

Release files / fdars-0.13.0.tar.gz

Download URL fdars-0.13.0.tar.gz
Size 6.3 MB
Tags Source
SHA-256 checksum
How to use checksums
86160a4192d2e6621a486ab62ca891b61fa608b057df945c736a9164169f5eaa
BLAKE2b-256 checksum
How to use checksums
f5c04d8c9043eebeed31fbd23c6027c0a655d608a3ce9af4a3ace848735228ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / fdars-0.13.0-cp39-abi3-win_amd64.whl

Download URL fdars-0.13.0-cp39-abi3-win_amd64.whl
Size 3.7 MB
Tags CPython 3.9 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
e2c5936a1cfeeee6952ba4665233c25a923b0da16f0f3856e31ff7def6ac891c
BLAKE2b-256 checksum
How to use checksums
5d0fe8e3c535000f5fe645d0520c90b1c011f134373ff586a7f7a7c39b96c30d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / fdars-0.13.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fdars-0.13.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.7 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 abi3
SHA-256 checksum
How to use checksums
c70ee218b9bc4903425e4869e2014c2d3a70bfad0763ca63750452da92530809
BLAKE2b-256 checksum
How to use checksums
a7550b6d9adcca5486b0f4a48e63d3d121595e65c0f3683f23fcad1b1865eed1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / fdars-0.13.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL fdars-0.13.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.6 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 abi3
SHA-256 checksum
How to use checksums
ed8cd5f7f294ad977927502dd22f0e13e55fdf966e6f3b63f3f92d417b75a78b
BLAKE2b-256 checksum
How to use checksums
040c0142463641b4c396fe394de2a07990a17920b792949409a4569bf237f93a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / fdars-0.13.0-cp39-abi3-macosx_11_0_arm64.whl

Download URL fdars-0.13.0-cp39-abi3-macosx_11_0_arm64.whl
Size 3.4 MB
Tags CPython 3.9 abi3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f443dff05bf09239f354cc6f835a2d9a0bd9726b6b61e4cacaff7805d36b7714
BLAKE2b-256 checksum
How to use checksums
1420043759d90085724e428956617236bff5ab8aea05a73295ab777750e9c10d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / fdars-0.13.0-cp39-abi3-macosx_10_12_x86_64.whl

Download URL fdars-0.13.0-cp39-abi3-macosx_10_12_x86_64.whl
Size 3.6 MB
Tags CPython 3.9 abi3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
12c6cd45ec46425717a73b4b40649db36013cf0ad594829f1f0907e732562e44
BLAKE2b-256 checksum
How to use checksums
2da5bd641712c86ad7eb48271275ac5aa0e5013991c5ba9d9f4667f695ce5ee4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

This release

0.13.0 This release

6 release files

0.9.0

6 release files

0.7.0

6 release files

0.6.0

6 release files

0.5.0

6 release files

0.4.0

6 release files

0.3.0

6 release files

0.2.0

6 release files

0.1.0

6 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page