Skip to contents

Retrieves fraud statistics for multiple months and combines them into a single tibble.

Usage

get_pix_fraud_stats_multi(databases, ...)

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{}