5GB 이상의 데이터를 한꺼번에 read_csv()를 사용하여 pandas dataframe으로 읽어들이는데 MemoryError 발생MemoryError: Unable to allocate 512. KiB for an array with shape (65536,) and data type int64 chunksize 파라미터를 사용하여 잘라서 가져온다import pandas as pdchunksize = 10000chunk = pd.read_csv('file_path', chunksize=chunksize) df는 dataframe으로 반환되는것이 아니라 iterable한 객체로 반환되어 for문으로 접근 가능함. 각 chunk는 dataframe형태임 for문 접근 -> 하나의 dataframe으로 ..