Tutorial | Top N recipe#

Let’s try out the Top N recipe to isolate the biggest purchases found in a practice dataset.

Get started#

Objectives#

In this tutorial, you will:

  • Find the five most expensive purchases recorded in a dataset.

  • Find the five most expensive purchases per item category in the dataset.

Prerequisites#

To complete this tutorial, you’ll need the following:

  • A Dataiku instance (version 12.0 and above).

Create the project#

  1. From the Dataiku Design homepage, click + New Project > DSS tutorials > Core Designer > Top N Recipe.

  2. From the project homepage, click Go to Flow (or g + f).

Note

You can also download the starter project from this website and import it as a zip file.

You’ll next want to build the Flow.

  1. Click Flow Actions at the bottom right of the Flow.

  2. Click Build all.

  3. Keep the default settings and click Build.

Use case summary#

Let’s say we’re a financial company that uses some credit card data to detect fraudulent transactions.

The project comes with three datasets, described in the table below.

Dataset

Description

tx

Each row is a unique credit card transaction with information such as the card that was used and the merchant where the transaction was made.

It also indicates whether the transaction has either been:

  • Authorized (a score of 1 in the authorized_flag column)

  • Flagged for potential fraud (a score of 0)

merchants

Each row is a unique merchant with information such as the merchant’s location and category.

cards

Each row is a unique credit card ID with information such as the card’s activation month or the cardholder’s FICO score (a common measure of creditworthiness in the US).

Create the Top N recipe#

We’ll create a Top N recipe from the tx_prepared dataset.

  1. From the Flow, select the tx_prepared dataset and click the Actions icon (+) from the right panel to open the Actions tab.

  2. Under the Visual Recipes section, click on Top N.

    The New data preparation recipe window opens.

  3. Keep tx_prepared as the input dataset.

  4. Name the output dataset tx_topn.

  5. Click Create Recipe.

A screenshot of the New topn recipe dialogue window.

Find most expensive purchases#

To find the five largest purchases in a dataset:

  1. Retrieve the 5 top rows, and 0 bottom rows.

  2. Select the purchase_amount column for sorting.

  3. Change the sort to descending order Descending icon., so the most expensive orders appear at the top of the dataset.

  4. Run the recipe and open the output dataset.

A screenshot of the Top N step in the Top N recipe.

As you can see, the output dataset consists of just five records including the most expensive purchases in the whole dataset. Let’s add a little more complexity.

Group by item category#

Here, we’ll try a different example to find the five biggest purchases in the dataset per item category.

  1. Click Parent Recipe to reopen the Top N recipe.

  2. Under from, select each group of rows identified by …

  3. In the dropdown that appears, choose item_category as the key column.

  4. Under In addition, compute for each row, check the row number within its group checkbox.

A screenshot of the Top N step showing how to group top purchases by item category.

Retrieve a subset of columns#

To make the output easier to interpret:

  1. Navigate to the Retrieve columns step.

  2. Change the Mode to Select columns.

  3. Move all of the columns into the Available columns section using the Left-facing double arrow. double arrow.

  4. Move item_category and purchase_amount back to the Selected columns section using the Right-facing single arrow. single arrow.

  5. Run the recipe and then open the output dataset.

The output should have three columns: item_category, purchase_amount, and _row_number.

Screenshot of the output dataset showing top purchases grouped by item category.

You’ll see that for each category — A, B, C, and D — there are five purchase amounts that decrease within their grouping. We can confirm from the _row_number values that each grouping has five values.

What’s next?#

You just practiced using the Top N recipe to find the most expensive transactions in the dataset.

See also

For more information on this recipe, see also the Top N: retrieve first N rows article in the reference documentation.

Continue to the Tutorial | Pivot recipe to learn more about how you can create pivot tables using another visual recipe.