How do I scrape the data from this table using R?

31 Views Asked by At

I am trying to extract the data here: https://entp.hud.gov/idapp/html/condo1.cfm using the rvest package for R.

I suspect that I am at minimum missing some steps but unsure where to start.

The results from the r code below seem to be the fields from the prior page.

library(rvest)
url <- "https://entp.hud.gov/idapp/html/condo1.cfm"

url %>%
  read_html() %>%
  html_table() 
0

There are 0 best solutions below