Skip to main content

Installation & Setup

Get AnoFox Statistics running in minutes.

System Requirements

RequirementVersion
DuckDB1.4.3 or later
OSLinux, macOS, Windows
Architecturex86_64, ARM64, WASM

Installation

Install from the DuckDB Community Registry:

INSTALL anofox_statistics FROM community;
LOAD anofox_statistics;

For local builds or development versions, see the GitHub repository.

Verify Installation

-- Load extension
LOAD anofox_statistics;

-- Test with a simple regression
SELECT anofox_stats_ols_fit_agg(
y,
[x]
) as model
FROM (VALUES (1.0, 2.0), (2.0, 4.0), (3.0, 6.0)) AS t(x, y);

Persistent Loading

To load the extension automatically, create a .duckdbrc file:

# ~/.duckdbrc
LOAD anofox_statistics;
🍪 Cookie Settings