Returns ACRIS data for specified persons based upon parameters

acris_people(people = c("Weinstein", "J Kushner"), boroughs = "All",
  documents = "All", party_names = "All", date_from = "1900-01-01",
  date_to = Sys.Date(), resolve_parties = T,
  parse_all_documents = FALSE, clean_names = TRUE, rows_max = 999999,
  nest_data = FALSE, return_message = TRUE)

Arguments

people

vector of people names

boroughs

character vector of boroughs whose options include

  • All

  • Manhattan

  • Brooklyn

  • Bronx

  • Queens

  • Staten Island

documents

if not NULL type of documents

party_names

vector of party name type, default al

date_from

if not NULL, date records start

date_to

if not NULLm date records end

resolve_parties

if TRUE resolves parties

parse_all_documents

if TRUE parses detailed document data

clean_names

if TRUE cleans names

rows_max

if not NULL

nest_data

if TRUE returns a nested data frame

return_message

if TRUE returns a message

See also

Examples

# NOT RUN {
df_people <-
acris_people(
people = c("Weinstein", "J Kushner", "Marv Albert"),
boroughs = "All",
documents = "All",
party_names = "All",
date_from = "1900-01-01",
date_to = Sys.Date(),
resolve_parties = F,
parse_all_documents = FALSE,
clean_names = TRUE,
rows_max = 999999,
nest_data = FALSE,
return_message = TRUE)
# }