View Normality.py
from scipy.stats import shapiro, normaltest, anderson, norm | |
from statsmodels.graphics.gofplots import qqplot | |
import seaborn as sns | |
from colorama import Fore | |
import matplotlib.pyplot as plt | |
import numpy as np | |
sns.set(color_codes=True) | |
def check_shapiro(data, alpha=0.05): |