Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2Robust statistical models 

3""" 

4__all__ = ["norms", "mad", "Huber", "HuberScale", "hubers_scale", "test"] 

5from . import norms 

6from .scale import mad, Huber, HuberScale, hubers_scale 

7 

8from statsmodels.tools._testing import PytestTester 

9 

10test = PytestTester()