Calculate Sum and Maximum

You are here:
← All Topics

To highlight some of the power of Essentia for batch processing operations, we have created a series of short demos. They use data from a fictional online casino. Data can be found in the casestudies/casino directory of the git repository. The data provides the username, time, bet (integer, US Dollars), winnings (float, US Dollars), and country of origin of their customers.

In this demo, we are interested in a summary table that contains the total winnings and maximum bet that each user made.

This script imports columns 1, 3, and 4 of this dataset. It then takes the maximum of the bet values and adds the winnings (which can also be negative) for each unique username. Selecting only the necessary subset of columns is good practice for larger datasets, as it allows you to fit more of the relevant data into memory and thus increases the efficiency of your analysis.

Primary Lines in this Script

Line 7
Store a vector myvector in the database totalwinnings that keeps track of the maximum value of the bet column and aggregates the values in the winnings column for each unique value of the user column.

Line 11

  • Tell Essentia to look for data on your local datastore.

Line 13

  • Create a new rule to take any files in your home directory with ‘onlinecasino’ in their name and put them in the casino category. Also tell Essentia not to look for a date in the filenames.

Line 17

  • Pipe all files in the category casino to the aq_pp command.
  • In the aq_pp command, tell the preprocessor to take data from stdin, ignoring errors and skipping the first line (the header).
  • Then define the incoming data’s columns, skipping the second and fifth columns (time and country), and import the data to the vector in the totalwinnings database so the attributes listed there can be applied.

Line 19

  • Export the modified and aggregated data from the database and save the results to a csv file.
 1     ess cluster set local
 2     ess purge local
 3
 4     ess udbd stop
 5     ess server reset
 6
 7     ess drop database totalwinnings
 8     ess create database totalwinnings
 9
10     ess create vector myvector s,pkey:user i,+max:bet f,+add:winnings
11
12     ess udbd start
13
14     ess select local
15
16     ess category add casino "$HOME/EssentiaPublic/*onlinecasino*" --dateregex none
17
18     ess summary
19
20     ess stream casino "*" "*" "aq_pp -f,+1,eok - -d s:user X i:bet f:winnings X -udb -imp totalwinnings:myvector" --debug
21
22     ess exec "aq_udb -exp totalwinnings:myvector -o totalwinnings.csv" --debug