Note
This is the documentation for the current state of the development branch of Qiskit Experiments. The documentation or APIs here can change prior to being released.
DataProcessor.__call__¶
- DataProcessor.__call__(data, **options)[source]¶
Call self on the given datum. This method sequentially calls the stored data actions on the datum.
- Parameters:
data (
Union
[Dict
,List
[Dict
]]) – The data, typically fromExperimentData.data(...)
, that needs to be processed. This dict or list of dicts also contains the metadata of each experiment.options – Run-time options given as keyword arguments that will be passed to the nodes.
- Return type:
ndarray
- Returns:
The data processed by the data processor. This is an arbitrary numpy array that may contain standard errors as a ufloat object.