CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Fraud Detection in R

Afficher le cours

Instructions

  • 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.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

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(___, ___, ___, ___))
Modifier et exécuter le code