본문 바로가기

Pandas37

pandas read_html 기능오류 (ImportError: html5lib not found, please install it) 원래 입력되어있던것은 df = pd.read_html(str(table)) bitcoin = df[0] bitcoin.head() 였다. 하지만 이에 대해서 에러가 뜬다. --------------------------------------------------------------------------- ImportError Traceback (most recent call last) c:\Users\danie\Documents\ds_study\source_code\05. forecast.ipynb Cell 110' in () ----> 1 df = pd.read_html(str(table)) 2 bitcoin = df[0] 3 bitcoin.head() File c:\Users\danie\anacon.. 2022. 6. 13.
pandas matplotlib 그래프 생성 에러 matplotlib을 사용하여 그래프를 그리는 과정이 있었다. 기본적으로 seaborn도 함께 import 해줘서 사용하여 자료를 만들어주고 tips = sns.load_dataset('tips') 이것을 토대로 출력값을 만들어 주는 것이였다. # 잘 못 출력된 결과 boxplot = plt.figure() axes1 = boxplot.add_subplot(1,1,1) axes1.boxplot([tips[tips['sex'] == 'Famale']['tip'], tips[tips['sex'] == 'Male']['tip']], labels = ['Female', 'Male']) axes1.set_xlabel('Sex') axes1.set_ylabel('Tip') axes1.set_title('Boxplo.. 2022. 6. 11.
pandas AttributeError: 'AxesSubplot' object has no attribute 'set_titie' 아... 왜그런걸까.. 이유라도 알아야 대처를 하지 싶다. DataFrame의 각 plt에 배정된 title을 변경해주려고 했다. axes2.set_title('dataset_2') axes3.set_titie('dataset_3') axes4.set_title('dataset_4') 이게 작동된 코드고 axes2.set_title('dataset_2') axes3.set_title('dataset_3') axes4.set_title('dataset_4') 이게 AttributeError: 'AxesSubplot' object has no attribute 'set_titie' 라는 에러가 뜬 코드다 차이점을 알겠는가? 나는 모르겠다. 메모장에 글씨크기를 최대로 키워서 봐도 모르겠더라 뭐가 다른지; 그냥.. 2022. 6. 11.
Pandas 일부 datetime 작동오류? pandas 기능 중 to_datetime이 있는데 정말.. df['ds'] = pd.to_datetime(df['ds'], format='%y. %m. %d.') del df['date'] 이 코드가 작동이 안되었던 코드고 df['ds'] = pd.to_datetime(df['ds'], format='%y. %m. %d.') del df['date'] 이 코드가 작동이 되었던 코드다. 다른점이 느껴지는가? 난 봐도봐도 모르겠지만, 전자는 작동 에러가 나고 후자는 잘 작동 되었다. 이쯤되면 뭐가 옳고 그른지, 그냥 vs code 어플리케이션 맘대로 될때도 있고 아닐때도 있는지가 궁금해진다. 보다 더 세부적으로 쪼개진 공부를 해야겠다. 개괄적이고 설명을 들으며 하고는 있지만, 나는 좀 더 세부적으로 이해하.. 2022. 6. 10.