Get candidates totals by office by party
Source:R/paths-candidate.R
fec_get_candidates_totals_by_office_by_party.Rd
Aggregated candidate receipts and disbursements grouped by office by party by cycle.
Usage
fec_get_candidates_totals_by_office_by_party(
office,
sort_nulls_last,
page,
sort_hide_null,
election_year,
election_full,
is_active_candidate,
sort_null_only,
per_page,
sort,
api_key = Sys.getenv("FEC_API_KEY", unset = "DEMO_KEY")
)
Arguments
- office
Federal office candidate runs for: H, S or P
- sort_nulls_last
Toggle that sorts null values last
- page
For paginating through results, starting at page 1
- sort_hide_null
Hide null values on sorted column(s).
- election_year
Filter records to only those that were applicable to a given two-year period.The cycle begins with an odd year and is named for its ending, even year.
- election_full
True
indicates that full election period of a candidate.False
indicates that two year election cycle.- is_active_candidate
Candidates who are actively seeking office. If no value is specified, all candidates are returned. When True is specified, only active candidates are returned. When False is specified, only inactive candidates are returned.
- sort_null_only
Toggle that filters out all rows having sort column that is non-null
- per_page
The number of results returned per page. Defaults to 20.
- sort
Provide a field to sort by. Use
-
for descending order.- api_key
An API key provided by the API provider. This key is not clearly documented in the API description. Check the API documentation for details.