PYTHONimport pandas as pdimport matplotlib.pyplot as pltimport numpy as np # numpy를 임포트하여 평균 계산# 파일 경로path = '경로' # 파일위치 경로file_name = 'ice size count.csv' # CSV 파일 이름# 데이터 출처# 해빙 면적 : https://oceanclimate.kr/seaice_area/?start=&end=&area=nh&var=all&month=allfile_path = path + file_name # 파일 경로# CSV 파일 읽기df = pd.read_csv(file_path, encoding='cp949') # pd.read_csv == pandas의 함수로 CSV 파일을 읽어줌 ..