简体   繁体   中英

How to test for Normality using my dataset

This image includes my data I'm using for an ANOVA test.

Using this data, how can I test certain parts or comparisons for normality? For Python3

you could use a qq-plot

from statsmodels.graphics.gofplots import qqplot
from matplotlib import pyplot 

column = "column of your dataset"
# q-q plot
qqplot(column, line='s')
pyplot.show()

basically the upper end and also the lower end of the QQ plot shouldn't deviate from the straight line

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM