getHistory {fdicdata}R Documentation

Get history of a bank by FDIC certificate number or name

Description

This function retrieves the history of a bank by either its FDIC certificate number or name. The user can specify which fields to include in the output.

Usage

getHistory(CERT_or_NAME = NULL, fields, CERT = TRUE, limit = 10000)

Arguments

CERT_or_NAME

Either the FDIC certificate number or the name of the bank for which to retrieve history information.

fields

A character vector specifying the fields to include in the output.

CERT

A logical value indicating whether the value in CERT_or_NAME is a FDIC certificate number (default is TRUE).

limit

An integer indicating the maximum number of records to retrieve (default and max is 10000).

Value

A data frame containing the requested history information for the specified bank.

Examples

getHistory(CERT_or_NAME = 3850, c("INSTNAME","CERT","PCITY","PSTALP","PZIP5"))

[Package fdicdata version 0.1.0 Index]