data.set<- {changepoint} | R Documentation |
Generic function
data.set(object)<-value
object |
Depending on the class of |
value |
Replacement value |
Generic Function
Depends on the class of object
, see individual methods
Rebecca Killick
x=new("cpt") # new cpt object data.set(x)<-c(1,2,3,4,5) # replaces the existing data.set slot in x with c(1,2,3,4,5)