본문 바로가기
728x90

Data Analytics with python/[Error solving]3

[ValueError] ValueError: invalid literal for int() with base 10: '449.00' 다음 코드를 돌렸을 때 나오는 문구입니다. data['item_total'] = data['item_total'].astype(str).str.replace('₹', '').astype('int64') ValueError: invalid literal for int() with base 10: '449.00' 파이썬 형 변환을 하는 과정에서 생겨난 오류입니다. 문자형으로 소수점이 포함된 값을 정수형으로 변환하려면 에러가 발생합니다. int는 문자형인 실수형을 받기 위해서 숫자만 남기고 우선 실수형으로 변경 후 다시 정수형으로 변경해야 합니다. data['item_total'] = data['item_total'].fillna(-1) # temp values data['item_total'] = data[.. 2023. 2. 4.
matplotlib 한글 깨짐 현상 matplotlib 한글 폰트 깨짐 수정하는 법 폰트의 이름 출력 In [1]: import matplotlib as mpl import matplotlib.pyplot as plt import matplotlib.font_manager as fm In [2]: print('버전 :', mpl.__version__) print('설치 :', mpl.__file__) print('설정 :', mpl.get_configdir()) print('캐시 :', mpl.get_cachedir()) print('설정파일 :', mpl.matplotlib_fname()) 버전 : 3.2.2 설치 : C:\Users\kang\anaconda3\lib\site-packages\matplotlib\__init__.py 설정.. 2022. 2. 25.
내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다. !wget은 jupyter notebook에서는 실행이 안되는 문제가 발생한다. In [19]: !wget https://bit.ly/fruits_300_data -O fruits_300.npy 'wget'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. 주피터 노트북에서 해결하는 법 1) wget 라이브러리 설치 먼저 wget을 teminal에 설치한다 In [1]: pip install wget Requirement already satisfied: wget in c:\users\kang\anaconda3\lib\site-packages (3.2) Note: you may need to restart the kernel to use updated packages... 2022. 2. 25.
728x90