print.oCPD: Summarizing oCPD results

Description Usage Arguments Details Author(s) See Also Examples

Description

Summary, str and print methods for class oCPD

Usage

1
2
3
4
5
6
## S3 method for class 'oCPD'
print(x, ...)
## S3 method for class 'oCPD'
summary(object, ...)
## S3 method for class 'oCPD'
str(object, ...)

Arguments

x

the result of a call to onlineCPD or offlineCPD

object

the result of a call to onlineCPD or offlineCPD

...

(optional) additional arguements, ignored.

Details

The functions print and return invisibly the detected changepoints.

Author(s)

Zachary Zanussi

See Also

onlineCPD and plot.oCPD

Examples

1
2
3
4
5
6
7
set.seed(6)
x <- c(rnorm(50,mean=0.3,sd=0.15),rnorm(40,mean=0.7,sd=0.1),rnorm(60,mean=0.5,sd=0.15))
res <- offlineCPD(x)
summary(res)
print(res)
str(res)
res

onlineCPD documentation built on Jan. 15, 2017, 7:22 p.m.