분류 전체보기717 #1 마음가짐의 시작 지금은 내가 데이터 분석가가 되기로 결심한 2021년 10월로 부터 벌써 8개월이 지났다. 그 사이에 많은 일들이 있었고 깨닫는 바들이 있었다. 처음 시작할때 시작할때 나의 마음은 어떻게 갈피를 잡아야 할지 몰랐다. 너무 광범위했고, 너무 문외한이기 때문이다. 하지만 데이터 직무에서 일하시는 분들이 말씀하시는것도 그렇고 실제로 차후의 분석을 위해서는 수학이란 필수적인것이구나. 라고 느끼는 바가 있어서 우선은 수학부터 시작했다. 자가진단 수학을 자가진단해보니 초등학교 6학년 수준 이였다. 참담했고 암담했다. 뒤쳐져있어도 너무 뒤쳐져있었고 '비 전공자도 할수있다'라는 말이 내게는 기만처럼 느껴졌다. 내 기준에서 진정한 의미의 비전공자는 이미 수학적 배경이 깔려있는 대학입시까지 마친사람이 단순히 컴퓨터 관련학.. 2022. 6. 14. 비쥬얼 스튜디오 (vs code)에서 파이썬 파일 실행이 안될때. "<stdin>", line 1 비쥬얼 스튜디오(vs code) 로 여러가지 환경에서 공부할 일이 많아지면서 생각외로 그냥 파이썬 파일 하나에 녹여놓고 프로그램화 시키는것을 많이 알려주셨다. 그럴때 마다 뜨는 오류!!!! NameError: name 'res' is not defined >>> C:/Users/danie/anaconda3/envs/ds_study/python.exe c:/Users/danie/Documents/ds_study/source_code/webscraping_basic/3_requests.py File "", line 1 C:/Users/danie/anaconda3/envs/ds_study/python.exe c:/Users/danie/Documents/ds_study/source_code/webscraping.. 2022. 6. 14. 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. 이전 1 ··· 122 123 124 125 126 127 128 ··· 180 다음