I am trying to download only the table shown on this link:
http://factfinder.census.gov/faces/tableservices/jsf/pages/productview.xhtml?src=CF
but have not had success with the following code:
library(RCurl)
step1 = "http://factfinder.census.gov/faces/tableservices/jsf/pages/productview.xhtml?src=CF"
step2 = getURL(step1)
step3 = read.txt(textConnection(step2), header = FALSE)
Any thoughts would be greatly appreciated!