Skip to content

Commit

Permalink
update correlated_readout_error.py(Qiskit-Extensions#1238)
Browse files Browse the repository at this point in the history
  • Loading branch information
Naohnakazawa committed May 2, 2024
1 parent 764ed94 commit 3bc7ba6
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,10 @@ class CorrelatedReadoutError(BaseExperiment):
from qiskit_experiments.library import CorrelatedReadoutError
qubits = [0,1,2]
exp = CorrelatedReadoutError(physical_qubits=qubits, backend=backend)
exp.analysis.set_options(plot=True)
exp = CorrelatedReadoutError(physical_qubits=(0,1,2), backend=backend)
exp_data = exp.run().block_for_results()
exp_data.figure(0)
display(exp_data.figure(0))
exp_data.analysis_results(dataframe=True)
# section: manual
:doc:`/manuals/measurement/readout_mitigation`
Expand Down

0 comments on commit 3bc7ba6

Please sign in to comment.