content
First of all, from that site, we targeted all houses on sale within the boundary of Athens, Georgia, US which has more than 1 bedroom. Second, from those houses, we scrapped the data on price, the number of bedrooms, the number of bathrooms, sqft, and address. Third, we need to collect the data from 10 web-pages. So, by using the loop, we simplified the code. The R code is as follows.(Here, through the next tab, you can see the definition of the variable “athens” )
## Scrapping function
athens <- c(athens1, athens2, athens3, athens4, athens5, athens6, athens7, athens8, athens9, athens10)
get_price <- function(html){
html %>%
# The relevant tag
html_nodes('.list-card-price') %>%
html_text() %>%
str_trim()
}
get_details <- function(html){
html %>%
# The relevant tag
html_nodes('.list-card-details') %>%
html_text() %>%
str_trim()
}
get_addresses <- function(html){
html %>%
# The relevant tag
html_nodes('.list-card-addr') %>%
html_text() %>%
str_trim()
}
## collecting data by looping
addresses=c()
p=c()
details=c()
for (i in 1:10) {
d <- read_html(athens[i])
d_scrapped <- get_details(d)
p_scrapped <- get_price(d)
a_scrapped <- get_addresses(d)
p <- c(p, p_scrapped)
details <- c(details, d_scrapped)
addresses <- c(addresses, a_scrapped)
}
The R code for “athens”
athens1 <- "https://www.zillow.com/athens-ga/houses/?searchQueryState={%22pagination%22:{},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.41603485925962,%22north%22:34.498134675837406},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens2 <- "https://www.zillow.com/athens-ga/houses/2_p/?searchQueryState={%22pagination%22:{%22currentPage%22:2},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens3 <- "https://www.zillow.com/athens-ga/houses/3_p/?searchQueryState={%22pagination%22:{%22currentPage%22:3},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens4 <- "https://www.zillow.com/athens-ga/houses/4_p/?searchQueryState={%22pagination%22:{%22currentPage%22:4},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens5 <- "https://www.zillow.com/athens-ga/houses/5_p/?searchQueryState={%22pagination%22:{%22currentPage%22:5},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens6 <- "https://www.zillow.com/athens-ga/houses/6_p/?searchQueryState={%22pagination%22:{%22currentPage%22:6},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens7 <- "https://www.zillow.com/athens-ga/houses/7_p/?searchQueryState={%22pagination%22:{%22currentPage%22:7},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens8 <- "https://www.zillow.com/athens-ga/houses/8_p/?searchQueryState={%22pagination%22:{%22currentPage%22:8},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens9 <- "https://www.zillow.com/athens-ga/houses/9_p/?searchQueryState={%22pagination%22:{%22currentPage%22:9},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"
athens10 <- "https://www.zillow.com/athens-ga/houses/10_p/?searchQueryState={%22pagination%22:{%22currentPage%22:10},%22usersSearchTerm%22:%22athens%22,%22mapBounds%22:{%22west%22:-84.12844709277344,%22east%22:-82.67275861621094,%22south%22:33.419851898892745,%22north%22:34.494365709232525},%22mapZoom%22:9,%22regionSelection%22:[{%22regionId%22:23534,%22regionType%22:6}],%22isMapVisible%22:true,%22filterState%22:{%22sortSelection%22:{%22value%22:%22globalrelevanceex%22},%22isManufactured%22:{%22value%22:false},%22isLotLand%22:{%22value%22:false},%22isTownhouse%22:{%22value%22:false}},%22isListVisible%22:true}"