diff --git a/src/pyforest/_imports.py b/src/pyforest/_imports.py index f3de19c..423364a 100644 --- a/src/pyforest/_imports.py +++ b/src/pyforest/_imports.py @@ -72,6 +72,11 @@ stats = LazyImport("from scipy import stats") sm = LazyImport("import statsmodels.api as sm") +### Normality Tests +shapiro = LazyImport("from scipy.stats import shapiro") +normaltest = LazyImport("from scipy.stats import normaltest") +anderson = LazyImport("from scipy.stats import anderson") + ### Time-Series Forecasting fbprophet = LazyImport("import fbprophet") Prophet = LazyImport("from fbprophet import Prophet")