top of page

Normality Plugin -

TRANSFORMATION SUGGESTION: → Box–Cox (λ=0.22) recommended Post‑transformation Shapiro–Wilk: W=0.99, p=0.31 → NORMAL

[Chart: QQ plot before/after] Report saved: normality_report_sales_revenue.pdf The Normality Plugin transforms a tedious, error‑prone assumption check into an automated, visual, and actionable workflow. It fits naturally into statistical QA, feature engineering, and model validation pipelines — saving time and improving analytical rigor. normality plugin

CODE (Python): from scipy.stats import boxcox df['sales_revenue_norm'] = boxcox(df['sales_revenue'], lmbda=0.22) TRANSFORMATION SUGGESTION: → Box–Cox (λ=0

bottom of page