BlogHide Resteemsmimiming (25)in python • 6 years agopython crawling 삽질3city = driver.find_element_by_id('shSido') for option in city.find_elements_by_tag_name('option'): if option.text == ' 서울특별시': option.click() driver.find_element_by_xpath(' // [ @ id =…mimiming (25)in python • 6 years agopython 크롤링 삽질2목표: 전과 동일 결과:1페이지 당 50행, 50페이지* 출력 원인 : for문 안에 있는 click import requests from bs4 import BeautifulSoup import time from selenium import webdriver #from selenium.webdriver.common.keys import…mimiming (25)in crawling • 6 years agopython 크롤링 삽질목표 : 페이지 당 10개 항목 * 페이지 전체 (약 500) 추출 결과 : 1페이지 출력 from bs4 import BeautifulSoupimport timefrom selenium import webdriverdriver =…mimiming (25)in install • 7 years agoYour CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2Previously, Install Tensorflow with Pycharm Even though, the package worked well, someone could have a warning. This is CPU, GPU and Bazel(build tool) thing, and I want you to refer here to…mimiming (25)in install • 7 years agoInstall Tensorwflow with PycharmOpen Pycharm, Python IDE Select 'File' > 'Settings' Go through left to right. Select 'Project interpreter' > Check the directory of 'Project interpreter' . Directory where Python…mimiming (25)in npp • 7 years agoAll about notepad++ 64bit plugin managerMuch more efficient using Python to get data from website. Even though R has kinds of tools, they are specialized in analysis. Python is easy for beginner with low entry barrier But I think…mimiming (25)in r • 7 years agoR Basic, Lists of Packages & Functions for loading filesOHLA Loading some files, it is almost always confusing which function is proper. As a program toddler, I'm still green with handling data but it takes getting used to. It's one of the reasons I…mimiming (25)in load0file0r • 7 years agoR basic, 'for loop' Calculating Leap YearLogical meaning & - > and | - > OR ! - > Not > for(year in 2000:2018){ + if (year%%4==0 & year%%100!=0 | year%%400==0){ + result + print(result) + }…mimiming (25)in r • 7 years agoday 1 ) bithum api rFight for myself to develop machine learning with R The day first, Call API from Bithumb. It's on the website but, they don't give enough an explanation. I have any idea about the computer…