1. 웹 크롤링
웹 페이지 내 허용된 링크를 마구잡이로 가져옴
2. 웹 스크래핑
웹 페이지에서 다양한 방법으로 필요한 부분만 가져오는 것
head(diamonds) str(diamonds) glimpse(diamonds) colnames(diamonds) rename(diamonds, carat_New = carat) ggplot(data = diamonds, aes(x = carat, y = price, color = cut)) + geom_point() + facet_wrap(~cut)
'Programming > python' 카테고리의 다른 글
[파이썬] 자동 파일 분류 프로그램 만들기 (0) | 2023.05.31 |
---|---|
[알고리즘] 파이썬 문법 (0) | 2023.04.10 |
[matplotlib] 여러 그래프 (0) | 2023.03.27 |
[matplotlib] 산점도 그래프 (0) | 2023.03.27 |
[matplotlib] 원 그래프 (심화) (0) | 2023.03.27 |