Python Analysis in DataCube - debugging possible?

Hi, i wonder if there is a possibility to check what a Python Analysis is performing in the background? Right now its just a blackbox where the code is working or not - we are working with provided dummy-data and we want to check if the data - that is arranged from different locations - is processed like expected.

Thanks!

A very simple solution would be to check the preview of the Python transform. If all data needs to be analyzed, another simple solution would be to create a metric set setup for raw data retrieval. Such a metric set would return all the data from the underlying data cube, exactly as it is output by the Python transform.

Okay my question was insufficient, the underlying data is known - its often mixed up stuff that is not clearly showing what the connections behind will be as data at the end. The python code is written by myself - instead of only taking a look at the result its important to check why the result is “build” like that. The only option right now, is to work directly with python and its pandas lib, this is easy debuggable but an additional step that cost time.