getLocation | R Documentation |
This function retrieves location information for a bank with a given CERT number from the Federal Deposit Insurance Corporation (FDIC) database.
getLocation(CERT, fields = c("NAME", "CITY", "STNAME"), limit = 10000)
CERT |
A character string specifying the CERT number of the bank to retrieve location information for. |
fields |
A character vector specifying the fields to include in the output. Default is c("NAME", "CITY", "STNAME"). |
limit |
An integer specifying the maximum number of locations to retrieve. Default is 10000.
|
A data frame containing location information for the bank.
# Get location information for a bank with CERT number 3850
getLocation(3850)
# Get location information for a bank with CERT number 3850 and fields "NAME", "CITY", and "ZIP"
getLocation(3850, fields = c("NAME", "CITY", "ZIP"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.