API Reference
Complete reference documentation for PyFIA's public API.
Core Classes
| Class |
Description |
FIA |
Main database class for working with FIA data |
FIADataReader |
Low-level data reading utilities |
PyFIASettings |
Configuration management |
Estimation Functions
All estimation functions follow a consistent pattern:
result = estimator(db, **options) # Returns pl.DataFrame
Data Download
Utility Functions
Validation
Return Value Schema
All estimation functions return a polars.DataFrame with these columns:
| Column |
Type |
Description |
estimate |
Float |
Point estimate |
variance |
Float |
Estimated variance |
se |
Float |
Standard error |
cv |
Float |
Coefficient of variation (%) |
ci_lower |
Float |
Lower 95% confidence bound |
ci_upper |
Float |
Upper 95% confidence bound |
n_plots |
Int |
Number of plots in domain |
Plus any grouping columns specified via grp_by.