The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
You can download data for a particular period using
download_data():
You can parse the data from the downloaded .TXT files into
tidy R data frames using process_data():
You can also use process_metadata_file() and
process_data_file() to process single metadata and data
files, respectively.
Note: process_data() has only been tested by the
development team on Call Report data from March 2020 to present. Please
let us know if you find issues with processing data older than
2020.
The FCA Call Report data has changed over time, making it difficult
to perform analysis across multiple periods. To ensure that such
comparisons can be made safely, the compare_metadata()
returns differences in the data structure (files, column names, and
column definitions) between two sets of FCA Call Report data.
{fcall} contains the following internal datasets:
file_metadata contains a short description about each
file.<file>__<column>, where file is
the name of the raw data file and column is the name of the
column in the associated metadata file for which the dataset provides
the codes/definition mapping. For example, the RCB Call
Report data includes the column INV_CODE; the
RCB__INV_CODE internal dataset in {fcall} provides the
mapping between these integer codes and the associated plain-English
definitions for each.RCB__INV_CODE |> str()
#> Classes 'tbl_df', 'tbl' and 'data.frame': 35 obs. of 2 variables:
#> $ code : int 10 15 17 25 29 35 40 41 60 52 ...
#> $ value: chr "U.S. Treasury securities" "SBA securities" "Other U.S. Gov't securities and Agency(excluding MBS)" "Securities fully and unconditionally guaranteed by a GSE (excluding MBS and Farmer Mac securities)" ...To streamline data retrieval and usage, a dedicated function named
get_codes_dict() is also available. This function allows
users to access code dictionaries for a dataset without needing to
remember the specific column name in the dataset that contains the
codes:
# Get codes dictionary information for "RCB" data
get_codes_dict("RCB") |> str()
#> List of 2
#> $ codes_dict :Classes 'tbl_df', 'tbl' and 'data.frame': 35 obs. of 2 variables:
#> ..$ code : int [1:35] 10 15 17 25 29 35 40 41 60 52 ...
#> ..$ value: chr [1:35] "U.S. Treasury securities" "SBA securities" "Other U.S. Gov't securities and Agency(excluding MBS)" "Securities fully and unconditionally guaranteed by a GSE (excluding MBS and Farmer Mac securities)" ...
#> $ codes_varname: chr "INV_CODE"These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.