반응형
반응형
본문 바로가기

공부673

피플앤잡 직업정보 크롤링하기! (python, csv, requests) 피플앤잡 직업정보 크롤링하기! (csv, requests) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 import csv import requests from bs4 import BeautifulSoup from tqdm.notebook import tqdm BASE_URL = 'https://www.peoplenjob.com/jobs/' URL_LIST = ['%s%d' % (BASE_URL, i) for i in range(1001, 4181525, 1)] def crawl_pplnjob_desc(url): response = requests.get(u.. 2021. 2. 15.
인디드 모든 구인공고 크롤링하기! (feat. Python, Selenium, BeautifulSoup) 인디드 모든 구인공고 크롤링하기! (feat. Python, Selenium, BeautifulSoup) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112.. 2021. 2. 15.
H20 Driverless AI (코딩 없이 인공지능! 머신러닝!) H20 Driverless AI (코딩 없이 인공지능! 머신러닝!) 2012년도 H20 (물) 이라는 소프트웨어 벤처기업이 캘리포니아에 설립되었습니다. 인도 출신 미국인 SRI AMBATI (스리 암바티)가 대표입니다. H20 Inc.에서 2016년도, 2017년도 드라이버가 필요없이 간단한 설정만으로 인공지능을 학습하고 예측할 수 있는 소프트웨어를 개발했습니다. 즉, 인공지능에 대한 지식이 부족하여도 좋은 모델을 누구나 이용할 수 있는 소프트웨어가 개발된 것입니다. 스리 암바티 대표는 인도에서 학부를 졸업하고 미국, 멤피스로 이주하여 석사 졸업한 이후 영주권, 시민권을 취득해서 현재는 미국인입니다. 미국내 H1B를 가장 많이 받는 인종이 인도인입니다. 인도에서도 유명한 대학을 졸업한 것이 아닙니다. 인.. 2021. 2. 15.
Technical Support Fundamentals #02 (Week 1) Technical Support Fundamentals #02 (Week 1) Welcome to Technical Support Fundamentals, the first course of the IT Support Professional Certificate! By enrolling in this course, you are taking the first step to kickstarting your career in tech. In the first week of the course, we'll learn about how computers were invented, how they've evolved over time, and how they work today. We will also learn.. 2021. 1. 24.
Google IT Support Professional Certificate #01 Technical Support Fundamentals Google IT Support Professional Certificate #01 Google IT Support Professional Certificate 6개월 안으로 취득하는 것을 목표로 설정했다. Google IT Support Professional Certificate은 총 5개의 코스로 구성되어 있다. Course : Technical Support Fundamentals Course : The Bits and Bytes of Computer Networking Course : Operating Systems and You: Becoming a Power User Course : System Administration and IT I.. 2021. 1. 24.
R기초; R 기초 - ggplot2 그래픽6 - 그래프 배치 및 저장 R기초; R 기초 - ggplot2 그래픽6 - 그래프 배치 및 저장 library(ggplot2) libray(car) str(Salaries) ggplot(Salaries, aes(x=rank)) + geom_bar(fill="steelblue") ggplot(Salaries, aes(x=salary)) + geom_histogram(fill="maroon") ggplot(Salaries, aes(x=yrs.since.phd, y=salary)) + geom_point(color="orange") ggplot(Salaries, aes(x=rank, y=salary)) + geom_boxplot(fill="mistyrose") install.packages("gridExtra") library(grid.. 2021. 1. 24.
R기초; R 기초 - ggplot2 그래픽5 - 테마 R기초; R 기초 - ggplot2 그래픽5 - 테마 library(ggplot2) library(car) str(Salaries) ggplot(Salaries, aes(x=yrs.since.phd, y=salary, color=rank, shape=rank)) + geom_point() + facet_grid(. ~ sex) + theme_gray() ?theme_gray theme() ggplot(Salaries, aes(x=rank, y=salary, fill=sex)) + geom_boxplot() + labs(title="Salary by Rank and Sex", x="Rank", y="Salary") + theme(plot.title=element_text(face="bold.italic",.. 2021. 1. 24.
R 기초 - ggplot2 그래픽4 - 그래프 옵션 R 기초 - ggplot2 그래픽4 - 그래프 옵션 library(ggplot2) library(car) str(Salaries) ggplot(Salaries, aes(x=rank, y=salary, fill=sex)) + geom_boxplot() + scale_x_discrete(breaks=c("AsstProf", "AssocProf", "Prof"), labels=c("Assistant Professor", "Associate Professor", "Professor")) + scale_y_continuous(breaks=c(50000, 100000, 150000, 200000), labels=c("$50k", "$100k", "$150k", "$200k") scale_x_discrete() sc.. 2021. 1. 24.
R 기초 - ggplot2 그래픽3 - 집단별 그래프 R 기초 - ggplot2 그래픽3 - 집단별 그래프 library(ggplot2) library(car) str(Salaries) # 투명도 50% 분포도 ggplot(Salaries, aes(x=salary)) + geom_density(alpha=0.5) # 산점도 ggplot(Salaries, aes(x=yrs.since.phd, y=salary, color=rank, shape=sex)) + geom_point() # 막대그래프 ggplot(Salaries, aes(x=rank, fill=sex)) + geom_bar(position="stack") ggplot(Salaries, aes(x=rank, fill=sex)) + geom_bar(position="dodge") ggplot(Salari.. 2021. 1. 24.

반응형