This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use chrono::NaiveDateTime; | |
use deku::{ | |
bitvec::{BitSlice, BitVec, BitView, Msb0}, | |
prelude::*, | |
}; | |
#[derive(Debug)] | |
pub struct TimeT(NaiveDateTime); | |
impl<'a> DekuRead<'a> for TimeT { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): |