Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK Go to the latest version
Important

IBM Quantum Platform is moving and this version will be sunset on July 1. To get started on the new platform, read the migration guide.

qiskit.visualization.plot_error_map

plot_error_map(backend, figsize=(12, 9), show_title=True)

GitHub

Plots the error map of a given backend.

Parameters

  • backend (IBMQBackend) – Given backend.
  • figsize (tuple) – Figure size in inches.
  • show_title (bool) – Show the title or not.

Returns

A matplotlib figure showing error map.

Return type

Figure

Raises

  • VisualizationError – Input is not IBMQ backend.
  • VisualizationError – The backend does not provide gate errors for the ‘sx’ gate.
  • MissingOptionalLibraryError – If seaborn is not installed

Example

from qiskit import QuantumCircuit, execute, IBMQ
from qiskit.visualization import plot_error_map
%matplotlib inline
 
IBMQ.load_account()
provider = IBMQ.get_provider(hub='ibm-q')
backend = provider.get_backend('ibmq_vigo')
plot_error_map(backend)
../_images/qiskit.visualization.plot_error_map_1_0.png
Was this page helpful?
Report a bug or request content on GitHub.