4.1.3.3 Data Loading

You can get data for selected Threshold Set IDs.

Getting Data

It retrieves the data from DB tables for selected tunable parameters. The tunable_parameters is an optional input.
  • Input expression will be taken from class variable asc.tunbale_parameters if it was set during scenario execution.
  • Input text box will only appear for user, if class variable asc.tunable_parameters is None. User can then set the expression again.
    For example:
    tunable_parameters = "Trans_Base_Amt | Trans_Ct"

Include/Exclude Threshold Set Ids

Use the Include/Exclude Threshold Set Ids paragraph to include or exclude relevant threshold set ids. If None of the threshold set ids are selected then all threshold set ids will be included.

Figure 4-14 Include/Exclude Threshold Set Ids



Note:

The PreProd analysis only supports the BTL event_tag. Selecting other options may result in an error.

Get Data

To get the data, execute the following.
%python-pgx

evented_data_pdf = asc.get_data(tag = event_tag, 
                                tunable_parameters = tunable_param,
                                include_threshold_set_ids = include_threshold_set_ids,
                                exclude_threshold_set_ids = exclude_threshold_set_ids,
                                is_pre_prod_analysis=True)
z.show(evented_data_pdf.head())