{"id":13813613,"url":"https://github.com/indeedeng/anomaly-detection","last_synced_at":"2025-05-15T00:33:46.776Z","repository":{"id":38361588,"uuid":"56707445","full_name":"indeedeng/anomaly-detection","owner":"indeedeng","description":null,"archived":true,"fork":false,"pushed_at":"2016-04-20T17:40:32.000Z","size":94,"stargazers_count":61,"open_issues_count":1,"forks_count":26,"subscribers_count":12,"default_branch":"master","last_synced_at":"2024-08-04T04:04:23.756Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/indeedeng.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-20T17:37:01.000Z","updated_at":"2024-02-25T18:52:49.000Z","dependencies_parsed_at":"2022-08-25T04:50:42.676Z","dependency_job_id":null,"html_url":"https://github.com/indeedeng/anomaly-detection","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indeedeng%2Fanomaly-detection","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indeedeng%2Fanomaly-detection/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indeedeng%2Fanomaly-detection/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indeedeng%2Fanomaly-detection/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/indeedeng","download_url":"https://codeload.github.com/indeedeng/anomaly-detection/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225319282,"owners_count":17455741,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T04:01:23.180Z","updated_at":"2024-11-19T08:30:49.006Z","avatar_url":"https://github.com/indeedeng.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# AnomalyDetection and BreakoutDetection in python\nThis is a python implementation of Twitter's AnomalyDetection and BreakoutDetection.\n\n## Install\nThe dependencies contain C++ and Fortran code, so that you need gcc installed.\nCheckout the code, enter the folder and run:\n```\npip install -r requirements.txt\n```\nWhen use this as a library, please include the line for \"pyloess\" from \"requirements.txt\" in your \"requirements.txt\".\n\n## Usage\nThe parameters are the same as the AnomalyDetectionVec in Twitter's AnomalyDetection (except the plot related ones).\nYou need to put your time series data into a list of float numbers:\n```\nfrom anoms import detect_anoms\nfrom breakout import detect_breakout\n\nx = list()\n\n\\# put the data into x\n\nres = detect_anoms(x, max_anoms=0.02, alpha=0.01, direction='both')\n```\n`res` will be a list of int numbers, consists the index of detected anomalies in `x`.\nIf `e_value=True` is set, `res` will be a tuple, \nwhose first value is the list of index of detected anomalies \nand the second value is the list of expected values.\n```\nres = detect_breakout(x, min_size=24, method='multi', beta=0.001, degree=1)\n```\n`res` will be a list of int numbers, consists the index of detected breakout in `x`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Findeedeng%2Fanomaly-detection","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Findeedeng%2Fanomaly-detection","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Findeedeng%2Fanomaly-detection/lists"}