Notice
Recent Comments
Link
아미(아름다운미소)
Using Chunksize in Pandas 본문
import pandas as pd
df_chunk = pd.read_csv(r'/inputpath/file.csv', iterator=True, chunksize=1000000)
df = pd.concat([chunk for chunk in df_chunk])
'랭귀지 > PYTHON' 카테고리의 다른 글
Oracle에 타임 스탬프를 삽입하는 방법 (0) | 2022.05.07 |
---|---|
Using Chunksize in Pandas (0) | 2022.03.13 |
django That port is already in use (0) | 2021.02.02 |
Python 빈 리스트 확인하는 방법 (0) | 2021.01.08 |
PyDev Undefined variable from import error (0) | 2020.12.15 |
Importing the numpy c-extensions failed (0) | 2020.12.11 |
0 Comments