그룹간 차이가 있는지 볼 수 있는 ANOVA검정과 사후검정 관련 포스팅을 해보겠습니다. ANOVA분석 우선 분석할 내용은, 4개의 A,B,C,D라는 학급별 수학/영어/과학 점수의 차이가 있는지 분석하는 것입니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 score_list=['math','eng','science'] from scipy import stats fstat_list=[] p_list=[] for i in lg_cat_list: fstat, p = stats.f_oneway(class_A[i], class_B[i], class_C[i], class_D[i]) fstat_list.append(fstat) p_list.append(p) Colored by Color Scripter c..