strucchange包中的断点和F统计信息

时间:2016-09-21 15:51:49

标签: r breakpoints

据我所知,断点应对应于最大化F统计量的观察,但我看不出F统计量与中断时间之间有任何有意义的关联。我有什么问题?

y <- c(rnorm(30), 2+rnorm(20))  # 1 breakpoint
f <- Fstats(y ~ 1)               # calculate F statistics
f$breakpoint                     # breakpoint Fstats suggests
which(f$Fstats == max(f$Fstats)) # observation with max F statistics
order(f$Fstats)                  # observations ordered by F statistics

可以看出,断点的观察不是具有最高F统计量的观测值。

1 个答案:

答案 0 :(得分:1)

您的y不是课程ts。所以输出变得有点奇怪ts数据,遗憾的是你无法解释它。

set.seed(1)
y <- c(rnorm(30), 2+rnorm(20))
ts.y <- ts(y, start = 1, frequency = 1)  # change `y` into class `ts`

ts.f <- Fstats(ts.y ~ 1)

ts.f$breakpoint  # [1] 30
ts.f$Fstats
 # Time Series:
 # Start = 7       # this means ts.f$Fstats[1] is 7th
which(ts.f$Fstats == max(ts.f$Fstats)) # [1] 24  # ts.f$Fstats[24] is 30th

plot(ts.f)
lines(breakpoints(ts.f))

enter image description here