Get startedGet started for free

Frequency feature for multiple accounts

Now that you know how to create a frequency feature for one account or person, let's do the same for multiple accounts at once. The dataset trans contains transactions made by Alice and Bob. Create the frequency feature freq_channel based on the same column channel_cd as the previous exercise.

The dataset trans, the zoo and dplyr packages are already loaded. The function frequency_fun() that you have written in the previous exercise is available in your workspace.

This exercise is part of the course

Fraud Detection in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Group the data by account
trans <- trans %>% ___(___)
Edit and Run Code