dqa.tasks.transformations.EntrywiseOperation#

class dqa.tasks.transformations.EntrywiseOperation(input_name: str | List[str], output_name: str, **kwargs)#

Performs an operation entrywise on all specified data rows.

Abstract class, the specific operation has to be implemented by overriding the method operation(a, b). This operation is applied to all the data rows specified in input_name in the following way. Starting with the first data row, the operation is iteratively applied to the intermediate result with each subsequent data row. The result is stored in output_name.

Parameters:
  • input_name (str or list of str) – The input data rows that the operation is applied to.

  • output_name (str) – Name of the output data row.

Methods

finish()

Can perform actions that are required to clean up after the task has finished, e.g. close network connections etc.

in_out_default

input_output_dataset

input_output_machine

input_output_mode

input_output_name

log

modify_data_row

modify_dataset

modify_dataset_dict

modify_machine

modify_measurement

operation

set_logging_level

transfer_metadata