I need to use normaltest in scipy for testing if the dataset is normal distributet. But I cant seem to find any good examples how to use scipy.stats.normaltest.
My dataset has more than 100 values.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
normaltestreturns a 2-tuple of the chi-squared statistic, and the associated p-value. Given the null hypothesis thatxcame from a normal distribution, the p-value represents the probability that a chi-squared statistic that large (or larger) would be seen.If the p-val is very small, it means it is unlikely that the data came from a normal distribution. For example: