EDA 및 Preprocessing 작업을 진행하면서 많이 사용했던 것들을 다시 예제를 통해 복습해보자CSV 파일 가져오기import pandas as pddf = pd.read_csv('file_path')print(df) 이때 파일이 아닌 폴더가 되는 경우에는 다음과 같이 경로를 수정해주면 된다import pandas as pdimport os# 폴더 경로 설정folder_path = r'C\abcdefg\hj\km~'# 폴더 내의 모든 파일에 대해 반복하고자 하는 경우for filename in os.llistdir(folder_path): # 불러오고자 하는 파일 (예 = csv) if filename.endswith('.csv'): file_path = os.path.join(fol..