Skip to content

Commit

Permalink
add grubbs
Browse files Browse the repository at this point in the history
  • Loading branch information
MezereonXP committed May 3, 2018
1 parent 188b30a commit 3ef9730
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AnomalyDetectTool
# AnomalyDetectTool
A tool of detecting anomaly points from data

### LOF-ICAD 算法的使用
Expand All @@ -20,3 +20,10 @@ You can use this tool like:
HoltWintersTool holtWintersTool = new HoltWintersTool(ALPHA, STEP, TIMES);
holtWintersTool.timeSeriesAnalyse(testData);
```

###Grubbs模型的使用
You can use this tool like:
```java
GrubbsTool grubbsTool = new GrubbsTool (G_MAX);
grubbsTool.timeSeriesAnalyse(testData);
```

0 comments on commit 3ef9730

Please sign in to comment.