Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Atoti Python SDK
>>> pnl_table = session.read_csv( ... TEST_RESOURCES_PATH / "csv" / "pnl.csv", ... array_separator=";", ... keys={"Continent", "Country"}, ... table_name="PnL", ... ) >>> cube = session.create_cube(pnl_table) >>> l, m = cube.levels, cube.measures >>> m["Max"] = tt.array.max(m["PnL.SUM"]) >>> m["Empty max"] = tt.array.max(m["PnL.SUM"][0:0]) >>> cube.query(m["PnL.SUM"], m["Max"], m["Empty max"]) PnL.SUM Max Empty max 0 doubleVector[10]{-20.163, ...} 9.26
Was this page helpful?