qiskit.providers.ibmq.experiment.AnalysisResult¶
-
class
AnalysisResult
(experiment_uuid, device_components, result_type, fit=None, chisq=None, quality=<ResultQuality.UNKNOWN: 'No Information'>, tags=None, result_uuid=None, backend_name=None, verified=False)[source]¶ Class representing an analysis result for an experiment.
AnalysisResult constructor.
- Paramètres
experiment_uuid (
str
) – Unique identifier of the experiment.device_components (
List
[str
]) – Device component types.result_type (
str
) – Result type.fit (
Optional
[Dict
]) – Fit value.chisq (
Optional
[float
]) – chi^2 decimal value of the fit.quality (
Union
[ResultQuality
,str
]) – Quality of the measurement value.tags (
Optional
[List
[str
]]) – Tags for this result.result_uuid (
Optional
[str
]) – Unique identifier for the result.backend_name (
Optional
[str
]) – Name of the backend on which the experiment was run.verified (
Optional
[bool
]) – Indicates whether this result has been verified..
- Lève
IBMQInputValueError – If an input argument is invalid.
-
__init__
(experiment_uuid, device_components, result_type, fit=None, chisq=None, quality=<ResultQuality.UNKNOWN: 'No Information'>, tags=None, result_uuid=None, backend_name=None, verified=False)[source]¶ AnalysisResult constructor.
- Paramètres
experiment_uuid (
str
) – Unique identifier of the experiment.device_components (
List
[str
]) – Device component types.result_type (
str
) – Result type.fit (
Optional
[Dict
]) – Fit value.chisq (
Optional
[float
]) – chi^2 decimal value of the fit.quality (
Union
[ResultQuality
,str
]) – Quality of the measurement value.tags (
Optional
[List
[str
]]) – Tags for this result.result_uuid (
Optional
[str
]) – Unique identifier for the result.backend_name (
Optional
[str
]) – Name of the backend on which the experiment was run.verified (
Optional
[bool
]) – Indicates whether this result has been verified..
- Lève
IBMQInputValueError – If an input argument is invalid.
Methods
__init__
(experiment_uuid, device_components, …)AnalysisResult constructor.
from_remote_data
(remote_data)Create an instance of this class from remote data.
update_from_remote_data
(remote_data)Update the attributes of this instance using remote data.
Attributes
Return the timestamp when the experiment was created.
Return the analysis result quality.
Return the timestamp when the experiment was last updated.
Return UUID of this analysis result.
-
property
creation_datetime
¶ Return the timestamp when the experiment was created.
- Type renvoyé
datetime
-
classmethod
from_remote_data
(remote_data)[source]¶ Create an instance of this class from remote data.
- Paramètres
remote_data (
Dict
) – Remote data to use.- Type renvoyé
AnalysisResult
- Renvoie
An instance of this class.
-
property
quality
¶ Return the analysis result quality.
- Type renvoyé
ResultQuality
-
update_from_remote_data
(remote_data)[source]¶ Update the attributes of this instance using remote data.
- Paramètres
remote_data (
Dict
) – Remote data used to update this instance.- Type renvoyé
None
-
property
updated_datetime
¶ Return the timestamp when the experiment was last updated.
- Type renvoyé
datetime
-
property
uuid
¶ Return UUID of this analysis result.
- Type renvoyé
str