API Reference#
The public Python API for chemotools. This section provides a technical reference for all importable modules and classes.
For detailed documentation with examples and visual guides, see the Methods section.
Core Modules
Spectroscopy & Adaptation
Quick Import Reference#
All classes can be imported directly from their respective modules:
from chemotools.baseline import AirPls, ArPls
from chemotools.augmentation import AddNoise, BaselineShift
from chemotools.scale import MinMaxScaler, NormScaler
from chemotools.outliers import HotellingT2, Leverage
from chemotools.physics import IntensityConversion
from chemotools.adaptation import DirectStandardization, PiecewiseDirectStandardization, XAxisInterpolator
from chemotools.plotting import SpectraPlot, ScoresPlot
from chemotools.inspector import PCAInspector, PLSRegressionInspector
# ... and so on