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()