Two easy ways to perform simulations in Atoti

One of the key strengths of Atoti is that it was built to natively propose effortless ways…

Samir Tazine
June 02, 2020
Scroll to read the aricle

Two easy ways to perform simulations in Atoti

One of the key strengths of Atoti is that it was built to natively propose effortless ways to perform simulations on your data. In this article, we will detail two ways of building simulations in Atoti.

#1 Data Simulations

This type of simulation is particularly powerful in data models where multiple tables are joined together.

It simply consists in creating a new scenario where the content of a data table (or part of it) has been replaced by new data. This is done with a one-liner in Atoti:

name_of_table_to_replace.scenarios["Name of new scenario"].load_pandas(new_table_data)

And that is it. A new scenario has been created in which all the previously defined metrics will be re-computed using the new data for this particular table. No need to duplicate datasets, redefine measures or restart the cube, every metric will be re-computed on the fly in the new scenario when needed. The “Simulation” hierarchy natively lets you compare the metrics across scenarios, be it with a query or from Atoti’s UI.

Note that the new table data can be loaded from a pandas DataFrame as in the example above, but also from a CSV with load_csv, a spark DataFrame with load_spark or parquet files (see available data sources in the documentation).

Example:

In this example we have a CSV file containing sales forecasts and the corresponding  amounts in a specific currency:

We load the CSV file into a sales_forecast_store:

sales_forecast_store = session.read_csv("sales_forecast.csv", sep=";")

We also have a CSV file with conversion rates:

Then, we load the rates into a conversion_rates_store:

conversion_rates_store = session.read_csv("conversion_rates.csv", keys=["currency"])

Next, we can join these two tables, and create a cube and a “Total amount” measure that will compute the total amount in EUR.

sales_store.join(conversion_rates_store, mapping={"currency":"currency"}))
cube = session.create_cube(sales_store)
m["Conversion Rate"] = conversion_rates_store["conversion_rate_to_eur"]
m["Total amount in EUR"] = Atoti.agg.sum(
    m["amount.SUM"] * m["Conversion Rate"],
    scope=atoti.scope.origin("currency")
)

A quick cube.visualize() enables us to visualize the result:

Then if we have a new sales forecast, for example, if we want to test the impact of a new forecast method:

sale_id amount currency
1 400 EUR
2 330 EUR
3 190 EUR
4 100 USD
5 520 USD
6 150 USD
7 8000 JPY
8 15000 JPY

We can simply create a new scenario where everything is identical except this new sales forecast:

sales_forecast_store.scenarios["New Forecast"].load_csv("sales_with_new_forecast.csv")

A cube.visualize() enables us to immediately compare the total amount across the different scenarios using the standard “source simulation” hierarchy:

#2 Measure simulations

Another way to create simulations in Atoti is to create a scenario where one or more measures are calculated differently.

In its most simple form, this type of simulation enables you to create a new scenario where some of the measures are either:

  • Replaced: The value of certain measures are replaced by a value you specify
  • Multiplied: Some measures are multiplied by a factor you specify
  • Incremented: A value you specify is added to certain measures

Additionally from that, you can specify a cube level at which you want to perform the changes using the per parameter.

First, you need to setup the simulation:

simulation = cube.setup_simulation(
    "Simulation hierarchy name",
    replace=array_of_measures_you_want_to_replace,
    multiply=array_of_measures_you_want_to_multiply,
    add=array_of_measures_you_want_to_increment,
    levels=levels_at_which_measure_changes_are_performed,
)

Then you can create as many new scenarios as you want where measures are replaced/multiplied/incremented by the values you want in one line for each scenario:

simulation.scenarios["Scenario 1"] += (replace_value,multiply_factor,increment)    

simulation.scenarios["Scenario 2"] += (replace_value2,multiply_factor2,increment2)

That is all you need to do. Similar to data simulations, new scenarios have been created and all metrics will be re-computed in real-time when you query or view them in the UI. A new simulation hierarchy, with the name provided, has been created to let you compare scenarios easily.

This type of simulation can be used for many forecasting scenarios where you modify the forecasts and see the impact on all other metrics.

It is particularly powerful when the value of some measures depends on those you replace: the downstream measures also get cascaded and updated in real time.

In our soccer premier league notebook, we use it to simulate various scoring systems using points for match wins/ties/losses and compare the impact on the standings.

Example:

Continuing with the previous sales and currencies example, we will setup a simulation on conversion rates to measure the impact on the total amount under different currency conversion assumptions:

convserion_rates_simulation = cube.setup_simulation(
    "Conversion rates simulations",
    per=[lvl["currency"]],
    replace=[m["Conversion Rate"]],
)

Then we can easily simulate a scenario where the euro drops 10% in value compared to the dollar (rate from 0.92 to 1.02)  and compared to the Japanese yen (rate from 0.0086 to 0.0096):

euro_drops_10_per = convserion_rates_simulation.scenarios["Euro drops 10%"]
euro_drops_10_per += ("USD", 1.02)
euro_drops_10_per += ("JPY", 0.0096)

Scenario comparisons can be performed in the “Conversion rate simulations” hierarchy that we created on the simulation setup. We will, as usual, use a cube.visualize() for that:

#3 Bonus: creating simulations from Atoti’s UI

Do you want to explore your data interactively and create simulations at the same time? This is actually possible in Atoti’s UI.

Once you have set up a simulation as in the previous section, instead of creating the new scenarios with Python code, you can directly do it in Atoti’s UI with the measures simulation widget. Here is an example, starting from the simulation of the previous section:

You can get a link to Atoti’s UI of your notebook using session.url.

If you want to perform more advanced Atoti simulations or find additional details have a look at the corresponding documentation page.

Join our Community

Join our thriving article community and start sharing your insights today!

Like this post? Please share

Latest Articles

View all

Retail Banking Analytics with Atoti

Make smarter decisions by analyzing consumer credit cards and risk profiles. Retail banking, otherwise known as consumer...

Putting Python Code in Production

Python is great for research, but can you really use it for production quality projects? Python, once...

Changes ahead: Atoti Server 6.0-springboot3

ActiveViam is upgrading version 6.0 of Atoti Server from Spring Boot 2 to Spring Boot 3 to...
Documentation
Information
Follow Us

Atoti Free Community Edition is developed and brought to you by ActiveViam. Learn more about ActiveViam at activeviam.com

Follow Us