tw.endpoints.anomaly_detection
class tw.endpoints.anomaly_detection
Low-level HTTP client for the ``/anomaly_detection`` API section. Each method maps directly to one API endpoint.
Methods
anomaly_detection.build_model() | Submit a model-building job |
anomaly_detection.detect() | Submit an anomaly-detection job. |
anomaly_detection.rca() | Submit a root-cause analysis job. |
anomaly_detection.status() | Retrieve the current status of a job. |
anomaly_detection.results() | Retrieve forecast results for a finished prediction job. |
anomaly_detection.model() | Retrieve the trained model for a finished build-model job. |
anomaly_detection.rca_table() | Retrieve the root-cause analysis table for a finished RCA job. |
anomaly_detection.delete() | Delete a job and its associated resources. |
Example Usage
import tangent_works
tw = tangent_works.API(
server = "https://api.tangent.works/",
token = TANGENT_LICENSE_TOKEN
)
tw_endpoints_anomaly_detection = tw.endpoints.anomaly_detection