📍 통계함수 ✅ 엑셀로 열기 : pd.read_excel('파일명.xlsx', index_col='column') In [1]: import pandas as pd df = pd.read_excel('score.xlsx', index_col='지원번호') # index 설정 df Out[1]: ✅ min() : 행/열에 대한 최솟값 In [2]: df['키'].min() Out[2]: 168 ✅ max() : 행/열에 대한 최댓값 In [3]: df['키'].max() Out[3]: 202 ✅ median() : 오름차순으로 정렬했을 때 중앙값 짝수개의 데이터가 있을 때 가운데 2개 중앙 데이터의 평균값 In [4]: df['키'].median() Out[4]: 188.0 ✅ nlargest(n) : ..