728x90
반응형
- 최초 Column(컬럼) 길이보다 더 긴 String 이 입력될때 아래와 같은 에러가 발생함.
ValueError: Trying to store a string with len [4] in [values_block_2] column but
this column has a limit of [3]!
- 에러 해결 방법
AS-IS
frame = pd.DataFrame( 정보 )
frame.to_hdf(self.dir_file, key='metadata', mode='a', append=True, format='table')
TO-BE
frame = pd.DataFrame( 정보 )
frame.to_hdf(self.dir_file, key='metadata', mode='a', append=True, format='table', min_itemsize={'protocol': 16})
728x90
반응형
'+ Development > Python' 카테고리의 다른 글
[Python] 파이썬 출력 문자 색상 변경하기(python print text color change) (6) | 2020.09.19 |
---|---|
[Python] Python3(파이썬) MacOS(맥OS)에서 magic Module(모듈) 설치(Install) 후 libmagic find failed 해결 방법 (0) | 2020.08.19 |
[Python] IF문을 이용한 List 데이터 확인하기 (1) | 2020.02.04 |
[Python] 대문자 / 소문자 변환 및 Check 하기 (0) | 2020.02.04 |
[Python] Python(파이썬) 현재 실행중인 PID 값 확인 (0) | 2020.01.07 |
댓글