ManagedResults

class ManagedResults(job_set, backend_name, success)[source]

Results managed by the Job Manager.

This class is a wrapper around the Result class and provides the same methods. Please refer to the Result class for more information on the methods.

ManagedResults constructor.

Parameters
  • job_set (ManagedJobSet) – Managed job set for these results.

  • backend_name (str) – Name of the backend used to run the experiments.

  • success (bool) – True if all experiments were successful and results available. False otherwise.

backend_name

Name of the backend used to run the experiments.

success

Whether all experiments were successful.

Methods

ManagedResults.data(experiment)

Get the raw data for an experiment.

ManagedResults.get_counts(experiment)

Get the histogram data of an experiment.

ManagedResults.get_memory(experiment)

Get the sequence of memory states (readouts) for each shot.

ManagedResults.get_statevector(experiment[, …])

Get the final statevector of an experiment.

ManagedResults.get_unitary(experiment[, …])

Get the final unitary of an experiment.