Get PIX Fraud Statistics for Multiple Months
Source:R/pix_fraud_stats.R
get_pix_fraud_stats_multi.RdRetrieves fraud statistics for multiple months and combines them into a single tibble.
Arguments
- databases
Character vector of year-months in "YYYYMM" format.
- ...
Additional arguments passed to
get_pix_fraud_stats().
Value
A tibble::tibble with combined fraud statistics.
Examples
if (FALSE) # It usually takes much longer than 5 seconds.
# Get fraud data for Q3 2025
q3_fraud <- get_pix_fraud_stats_multi(
databases = c("202507", "202508", "202509")
)
# \dontrun{}