qiskit.providers.ibmq.experiment.IBMExperimentService.update_analysis_result¶
- IBMExperimentService.update_analysis_result(result_id, result_data=None, tags=None, quality=None, verified=None, chisq=None, json_encoder=<class 'json.encoder.JSONEncoder'>, **kwargs)[source]¶
Update an existing analysis result.
- Parameters
result_id (
str
) -- Analysis result ID.result_data (
Optional
[Dict
]) -- Result data to be stored.quality (
Union
[ResultQuality
,str
,None
]) -- Quality of this analysis.verified (
Optional
[bool
]) -- Whether the result quality has been verified.tags (
Optional
[List
[str
]]) -- Tags to be associated with the analysis result.chisq (
Optional
[float
]) -- chi^2 decimal value of the fit.json_encoder (
Type
[JSONEncoder
]) -- Custom JSON encoder to use to encode the analysis result.kwargs (
Any
) -- Additional analysis result attributes that are not supported and will be ignored.
- Raises
IBMExperimentEntryNotFound -- If the analysis result does not exist.
IBMQApiError -- If the request to the server failed.
- Return type
None