목차 1. 라이브러리 import pandas as pd import numpy as np import matplotlib.pyplot as plt import statsmodels.api as sm from scipy import stats 2. sample() 샘플을 추출한다. n은 샘플사이즈 replace 추출한 후 다시 넣을 것인가(with replacement), 넣지 않을 것인가(without replacement) random_state는 seed이다. sampled_data = education_districtwise.sample(n=50, replace=True, random_state=31208) 추출한 샘플의 값을 평균을 낸다. education_districtwise['OVERALL..