├── DESCRIPTION ├── NAMESPACE ├── R ├── attach.R ├── detect_outliers.R ├── figfunc.R └── tsmeasures.R ├── README.md ├── data ├── dat0.rda ├── dat1.rda ├── dat2.rda ├── dat3.rda ├── dat4.rda └── dat5.rda ├── demo ├── 00Index └── anomalous.R ├── inst └── tests │ ├── .Rhistory │ └── test-detect.R ├── man ├── anomalous-package.Rd ├── anomaly.Rd ├── biplot.Rd ├── dat0.Rd ├── dat1.Rd ├── dat2.Rd ├── dat3.Rd ├── dat4.Rd ├── dat5.Rd └── tsmeasures.Rd └── tests ├── .Rhistory └── test-all.R /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/attach.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/R/attach.R -------------------------------------------------------------------------------- /R/detect_outliers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/R/detect_outliers.R -------------------------------------------------------------------------------- /R/figfunc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/R/figfunc.R -------------------------------------------------------------------------------- /R/tsmeasures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/R/tsmeasures.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/README.md -------------------------------------------------------------------------------- /data/dat0.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/data/dat0.rda -------------------------------------------------------------------------------- /data/dat1.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/data/dat1.rda -------------------------------------------------------------------------------- /data/dat2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/data/dat2.rda -------------------------------------------------------------------------------- /data/dat3.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/data/dat3.rda -------------------------------------------------------------------------------- /data/dat4.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/data/dat4.rda -------------------------------------------------------------------------------- /data/dat5.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/data/dat5.rda -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/anomalous.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/demo/anomalous.R -------------------------------------------------------------------------------- /inst/tests/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/tests/test-detect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/inst/tests/test-detect.R -------------------------------------------------------------------------------- /man/anomalous-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/anomalous-package.Rd -------------------------------------------------------------------------------- /man/anomaly.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/anomaly.Rd -------------------------------------------------------------------------------- /man/biplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/biplot.Rd -------------------------------------------------------------------------------- /man/dat0.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/dat0.Rd -------------------------------------------------------------------------------- /man/dat1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/dat1.Rd -------------------------------------------------------------------------------- /man/dat2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/dat2.Rd -------------------------------------------------------------------------------- /man/dat3.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/dat3.Rd -------------------------------------------------------------------------------- /man/dat4.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/dat4.Rd -------------------------------------------------------------------------------- /man/dat5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/dat5.Rd -------------------------------------------------------------------------------- /man/tsmeasures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/man/tsmeasures.Rd -------------------------------------------------------------------------------- /tests/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjhyndman/anomalous/HEAD/tests/test-all.R --------------------------------------------------------------------------------