chemotools.outliers =================== .. currentmodule:: chemotools.outliers Outlier detection methods to identify unusual samples and improve model diagnostics. **Import from this module:** .. code-block:: python from chemotools.outliers import ( DModX, HotellingT2, Leverage, QResiduals, StudentizedResiduals, ) Available Classes ----------------- .. list-table:: :widths: 30 70 :header-rows: 1 * - Class - Description * - :doc:`DModX ` - Distance to model in X-space * - :doc:`HotellingT2 ` - Hotelling's T² statistic for multivariate outliers * - :doc:`Leverage ` - Leverage values for influential point detection * - :doc:`QResiduals ` - Q residuals (squared prediction error) * - :doc:`StudentizedResiduals ` - Studentized residuals for regression outliers See Also -------- :doc:`Outlier Detection Methods Overview ` - Complete documentation with examples and visual guides