acris_boroughs_docs.Rd
Searches ACRIS for specific documents based on input parameters
acris_boroughs_docs(boroughs = c("Manhattan"), documents = c("DEED"), date_from = "2018-12-01", date_to = Sys.Date(), resolve_parties = T, rows_max = 999999999, parse_all_documents = FALSE, nest_data = TRUE, widen_party_data = F, return_message = TRUE)
boroughs | character vector of boroughs whose options include
|
---|---|
documents | vector of document types |
date_from | if not |
date_to | if not |
resolve_parties | if |
rows_max | if not |
parse_all_documents | if |
nest_data | if |
widen_party_data | if |
return_message | if |
a tibble
Other ACRIS: acris_bbl_data
,
acris_bbl_url
, acris_people
,
acris_urls_data
,
dictionary_document_class
,
ocr_acris_documents
# NOT RUN { ## Get all deeds and mortgages in Brooklyn and Manhattan from October 2017 to today acris_boroughs_docs(boroughs = c("Manhattan", "Brooklyn"), documents = c("DEED", "Agreement"), date_from = "2018-03-01", resolve_parties = F, date_to = Sys.Date(), rows_max = 999999999, parse_all_documents = FALSE, nest_data = TRUE, return_message = TRUE) # }