Note
ValueError: Unable to parse string 본문
728x90
df['columns].astype('int')
# ex) 12,500
데이터프레임 안에 문자가 포함된 값이 있는 경우에 발생하는 오류
이와 같은 경우는 해당 문자열을 모두 제거하고 데이터 속성 변경
df['columns'] = df['columns'].str.replace(',' , '')
df['columns'] = df['columns'].astype('int')
이와 같이 실행하면 에러 없이 작동한다.
'Machine Learning' 카테고리의 다른 글
활성화 함수 ( Activation Function ) (0) | 2021.10.14 |
---|---|
퍼셉트론 ( Perceptron ) (0) | 2021.10.05 |
json 파일 (0) | 2021.09.15 |
Gradient Vanishing & Exploding (0) | 2021.09.15 |
모델 과적합을 막는 방법 (2) | 2021.09.08 |
Comments