English
Languages
English
Bengali
French
German
Japanese
Korean
Portuguese
Spanish
Tamil

Warning

The package qiskit-ibmq-provider is being deprecated and its repo is going to be archived soon. Please transition to the new packages. More information in https://ibm.biz/provider_migration_guide

ManagedResults

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

Bases: object

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

combine_results

Combine results from all jobs into a single Result.

data

Get the raw data for an experiment.

get_counts

Get the histogram data of an experiment.

get_memory

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

get_statevector

Get the final statevector of an experiment.

get_unitary

Get the final unitary of an experiment.