-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDESCRIPTION
46 lines (46 loc) · 1.78 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Package: oddstream
Type: Package
Title: Outlier Detection in Data Streams
Version: 0.5.1
Depends: R (>= 3.4.0)
Maintainer: Priyanga Dilini Talagala <[email protected]>
Authors@R: c(
person("Priyanga Dilini", "Talagala", email="[email protected]", role= c("aut","cre")),
person("Rob J.", "Hyndman", role=c("ths")),
person("Kate", "Smith-Miles", role=c("ths"))
)
Description: We proposes a framework that provides real time support for early detection of
anomalous series within a large collection of streaming time series data. By definition, anomalies
are rare in comparison to a system's typical behaviour. We define an anomaly as an observation that
is very unlikely given the forecast distribution. The algorithm first forecasts a boundary for the
system's typical behaviour using a representative sample of the typical behaviour of the system. An
approach based on extreme value theory is used for this boundary prediction process. Then a sliding
window is used to test for anomalous series within the newly arrived collection of series. Feature
based representation of time series is used as the input to the model. To cope with concept drift,
the forecast boundary for the system's typical behaviour is updated periodically. More details
regarding the algorithm can be found in Talagala, P. D., Hyndman, R. J., Smith-Miles, K., et al.
(2019) <doi:10.1080/10618600.2019.1617160>.
BugReports: https://github.com/pridiltal/oddstream/issues
License: GPL-3
LazyData: true
RoxygenNote: 7.1.0
Imports: pcaPP,
stats,
ggplot2,
ks,
MASS,
RcppRoll,
mgcv,
moments ,
RColorBrewer,
mvtsplot,
tibble,
reshape,
dplyr,
graphics,
tidyr,
kernlab,
magrittr
Encoding: UTF-8
Suggests: testthat,
tidyverse