View source: R/search_member.R
search_member | R Documentation |
Search LegCo member by SpeakerID, MemberID or/and full or partial English or Chinese name.
search_member( search_string = NULL, speaker_id = NULL, member_id = NULL, exact = TRUE, verbose = TRUE ) legco_search_member( search_string = NULL, speaker_id = NULL, member_id = NULL, exact = TRUE, verbose = TRUE )
search_string |
search string of member's name. Accepts Chinese or
English full or partial name. Defaults to |
speaker_id |
the id of a speaker at the Legislative Council, or a vector
of ids. If |
member_id |
the id of a LegCo member, or a vector of ids. If
|
exact |
logical: Whether to look for exact match of the search term.
Defaults to |
verbose |
logical: Whether to display progress messages when fetching
data? Defaults to |
This is a complementary function to speakers()
and
member()
.
Complementary Functions:
search_committee
: Search LegCo committees
search_member
: Search LegCo members
search_voting_record
: Search Voting Record in LegCo meetings
search_question
: Search full text of question put to
the government by LegCo members
The complementary functions work by calling a number of database functions and combining their output, meaning that a function call usually involves multiple API calls. Use with caution to prevent reaching the API’s rate limit too quickly.
# Lookup LegCo member of SpeakerID 63 x <- search_member(speaker_id = 63) # Lookup LegCo member of MemberID 273 x <- search_member(member_id = 273) # Lookup members with "ting" in their names x <- search_member(search_string = "ting")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.