tw.endpoints.anomaly_detection.results
tw.endpoints.anomaly_detection.results(id=str)
Retrieve detection results for a finished detect job.
GET ``/anomaly-detection/{id}/results``
Parameters
id: str
Job identifier
Returns
pandas.DataFrame
Detection results including timestamps, target values, normal-behavior estimates, and anomaly-indicator columns.
Example Usage
CODE
anomaly_detection_results_response = tw.endpoints.anomaly_detection.results(
id = anomaly_detection_detect_id
)