ComenzarEmpieza gratis

Comparing frequency & recency

Now that you've created frequency and recency features, let's compare them between the legitimate transactions and the fraudulent ones. The dataset transfers contains 222 transactions from 4 accounts. The frequency features freq_channel and freq_auth, and the recency features rec_channel and rec_auth have been added as columns to the dataset.

Este ejercicio forma parte del curso

Fraud Detection in R

Ver curso

Instrucciones del ejercicio

  • Have a look at dataset transfers in the console using functions like head and str.
  • Get a summary of the frequency and recency channels for legitimate transactions.
  • Get a summary of the frequency and recency channels for fraudulent transactions.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

library(dplyr)

# Statistics of frequency & recency features of legitimate transactions:
summary(transfers %>% filter(___) %>% select(___, ___, ___, ___))

# Statistics of frequency & recency features of fraudulent transactions:
summary(transfers %>% filter(___) %>% select(___, ___, ___, ___))
Editar y ejecutar código