본문 바로가기

코딩공부11

220211[코딩공부기록] Matplotlib 이용 그래프 그리기 https://www.youtube.com/watch?v=3Xc3CA655Y4 최근 발견한 프로그래머 Keith Galli 유투버 수업 따라하기! import matplotlib.pyplot as plt import numpy as np import pandas as pd x=[0,1,2,3,4] y=[0,2,4,6,8] # 내가 만든 그래프 싸이즈 조정해주기(저장시에는 300픽셀로 저장 권장) plt.figure(figsize=(8,5), dpi=80) #plt.plot(x,y, label='2x', color='red', linewidth=2, marker='.', markersize=10) # 위 처럼 각각의 꾸미기 특성을 써줄 수 있으나 주로 약칭 이용 # fmt = '[color][marker].. 2022. 2. 11.
220123-3 [코딩공부] 네이버금융 많이본뉴스 크롤링 및 워드크라우드 만들기 from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.chrome.service import Service s = Service('c:/users/smile/desktop/chromedriver.exe') driver = webdriver.Chrome(service=s) url='https://finance.naver.com/news/news_list.naver?mode=RANK' driver.get(url) news_title=driver.find_element(By.CLASS_NAME,"hotNewsList") news_title2=news_title.find_elements(B.. 2022. 1. 23.
220123-2 [코딩공부] 쥬피터 노트북에서 wordcloud 설치 오류시 해결방법 쥬피터 노트북에서 !pip install wordcloud(워드크라우드 설치) 진행시 아래와 같은 오류가 발생하였다. 이리저리 구글링 해보고 이것저것 시도해 본 결과 내가 해결한 방법은 아래와 같다. 구글링(검색어 ERROR: Failed building wheel for wordcloud)을 하다가 발견한 방법 3가지(위 사진 아래 $) 내 경우에는 아나콘다 프롬프트에서 pip install wordcloud 또는 conda install wordcloud를 시도해 보았으나 되지 않았고 conda install -c https://conda.anaconda.org/conda-forge wordcloud를 설치해보니 문제가 해결되었다. 여전히 코끼리 다리를 더듬고 있지만 해결이 된 것 만으로도 대만족!!! 2022. 1. 23.
220123 [코딩공부] 워드크라우드 만들기 from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys from selenium.webdriver.chrome.service import Service s = Service('c:/users/smile/desktop/chromedriver.exe') driver = webdriver.Chrome(service=s) url='https://class101.net/search?page=1&query=%EC%9C%A0%ED%88%AC%EB%B8%8C&sort=latestOrder' driver.get(url) first_sel=driver.find.. 2022. 1. 23.
220120 [코딩공부] 넷플릭스크롤링 영화제목가져오기 from selenium import webdriver from selenium.webdriver.chrome.service import Service s = Service('c:/users/smile/desktop/chromedriver.exe') driver = webdriver.Chrome(service=s) url='https://www.netflix.com/ph/browse/genre/839338' driver.get(url) html=driver.page_source from bs4 import BeautifulSoup soup=BeautifulSoup(html,'html.parser') section_list=soup.select('section') section=section_list[2].. 2022. 1. 22.
220122 [코딩공부] 넷플릭스 크롤링 엑셀 저장하기 from selenium import webdriver from selenium.webdriver.chrome.service import Service s = Service('c:/users/smile/desktop/chromedriver.exe') driver = webdriver.Chrome(service=s) url='https://www.netflix.com/ph/browse/genre/839338' driver.get(url) html=driver.page_source from bs4 import BeautifulSoup soup=BeautifulSoup(html,'html.parser') section_list=soup.select('section.nm-collections-row') coun.. 2022. 1. 22.
220121 [코딩공부] 넷플릭스 크롤링-카테고리별 프로그램명 찾기 from selenium import webdriver from selenium.webdriver.chrome.service import Service s = Service('c:/users/smile/desktop/chromedriver.exe') driver = webdriver.Chrome(service=s) url='https://www.netflix.com/ph/browse/genre/839338' driver.get(url) html=driver.page_source from bs4 import BeautifulSoup soup=BeautifulSoup(html,'html.parser') section_list=soup.select('section') section=section_list[2].. 2022. 1. 22.
220119 [코딩공부] daum 뉴스기사 타이틀 가져오기 2022. 1. 19.
220118 [코딩공부] DeprecationWarning: executable_path has been deprecated, please pass in a Service object 오류 해결 공부 Anaconda, Chrome 설치 동영상 그대로 따라해도 DeprecationWarning: executable_path has been deprecated, please pass in a Service object이라는 오류가 떴다. ㅠㅠ google 검색을 통해 해결은 되었으나 이게 뭘 의미하는지 아직 잘 모르겠다. 우선 기록해 놓는 걸로.. 2022. 1. 18.
책 중요부분 요약 [1년안에 AI빅데이터 전문가가 되는 법] 서대호저 전혀 배경 지식이 없는 초보자가 [1년안에 AI빅데이터 전문가가 되는 법]을 읽고 나중에 참고하고자 중요 부분을 요약한 내용입니다. 저자는 이 책에 AI빅데이터 '현장'의 소리를 담으려 했고, '사수'의 입장에서 AI빅데이터가 되고자 하는 이들에게 조언을 해주고 있습니다. Part 1. AI 빅데이터 전문가, 넘치는 수요, 부족한 공급 * AI 빅데이터 전문가 복잡한 대량의 데이터를 구조화 및 분석, 인사이트 발견 및 시각화, 대안 제시 필요 역량: 1. 컴퓨터 사이언스 2. 수학&통계학 지식 3. 비지니스 분석능력(경역학) 필요 지식: 데이터베이스에 대한 지식(RDB&No-SQL). 데이터 전처리 및 가공능력, 서버에 대한 지식, 코딩 언어(파이썬, R, Spark), 수학 통계학적 지식 * AI 빅데.. 2020. 9. 1.
코딩 공부 시작 #1 파이썬 도형그리기 파이썬을 유투브를 통해 독학하며 낑낑대는 엄마를 향해 아들이 말한다. '엄마~ 혼자 공부하지 말고 나도 가르쳐줘' 하는 5학년 아들의 요청에 용기내어 블로그에 우리 공부의 기록을 남겨 보기로 했다.~ #1 파이썬으로 도형그리기 ▶우선 파이썬으로 그림을 그리려면 거북이를 불러와야해. 거북아~~ 나와라~~ import turtle as t (거북이를 파이썬에서 불러와줘) t.shape('turtle') (거북이로 그림을 그릴꺼야, 거북아 나와줘~) ▶우선 아래 파이썬 코드를 그대로 따라서 작성해 보고 어떤 그림이 나오는지 확인해 보자~ import turtle as t (거북이를 파이썬에서 불러와줘) t.shape('turtle') (거북이로 그림을 그릴꺼야) for i in range(4): (4번 반복할.. 2020. 5. 11.