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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
import("stats", "graphics", "zoo", "sandwich")
importFrom("utils", "globalVariables")
export(
## testing
"efp",
"gefp",
"Fstats",
## monitoring
"mefp",
"monitor",
## dating
"breakpoints",
"breakdates",
"breakfactor",
## efp functionals
"efpFunctional",
"maxBM",
"maxBB",
"maxBMI",
"maxBBI",
"maxL2BB",
"meanL2BB",
"rangeBM",
"rangeBB",
"rangeBMI",
"rangeBBI",
"supLM",
"maxMOSUM",
"catL2BB",
"ordL2BB",
"ordwmax",
## new generics
"sctest",
"boundary",
"recresid",
## utilities
"recresid.default",
"simulateBMDist",
"root.matrix",
"solveCrossprod",
## internal objects
## (currently still exported, needs fixing)
"pvalue.efp",
"pvalue.Fstats",
"pargmaxV",
"sc.beta.sup",
"sc.beta.ave",
"sc.beta.exp",
"sc.me",
"sc.meanL2",
"sc.maxL2",
"monitorMECritval",
"monitorMECritvalData",
"monitorMECritvalTable",
"monitorRECritval",
"monitorRECritvalData",
"monitorRECritvalTable")
## methods to new generics
S3method("sctest", "default")
S3method("sctest", "formula")
S3method("sctest", "efp")
S3method("sctest", "gefp")
S3method("sctest", "Fstats")
S3method("boundary", "efp")
S3method("boundary", "Fstats")
S3method("boundary", "mefp")
S3method("breakpoints", "formula")
S3method("breakpoints", "breakpointsfull")
S3method("breakpoints", "Fstats")
S3method("breakdates", "breakpoints")
S3method("breakdates", "confint.breakpoints")
S3method("mefp", "formula")
S3method("mefp", "efp")
S3method("recresid", "formula")
S3method("recresid", "lm")
S3method("recresid", "default")
## methods to standard generics
S3method("plot", "efp")
S3method("print", "efp")
S3method("lines", "efp")
S3method("print", "gefp")
S3method("plot", "gefp")
S3method("time", "gefp")
S3method("plot", "Fstats")
S3method("print", "Fstats")
S3method("lines", "Fstats")
S3method("plot", "mefp")
S3method("print", "mefp")
S3method("lines", "mefp")
S3method("print", "breakpoints")
S3method("lines", "breakpoints")
S3method("logLik", "breakpoints")
S3method("summary", "breakpoints")
S3method("logLik", "breakpointsfull")
S3method("AIC", "breakpointsfull")
S3method("summary", "breakpointsfull")
S3method("plot", "breakpointsfull")
S3method("confint", "breakpointsfull")
S3method("coef", "breakpointsfull")
S3method("vcov", "breakpointsfull")
S3method("fitted", "breakpointsfull")
S3method("residuals", "breakpointsfull")
S3method("df.residual", "breakpointsfull")
S3method("plot", "summary.breakpointsfull")
S3method("print", "summary.breakpointsfull")
S3method("print", "confint.breakpoints")
S3method("lines", "confint.breakpoints")
useDynLib(strucchange, .registration = TRUE)
|