@@ -282,7 +282,6 @@ gmwm = function(model, data, model.type="imu", compute.v="auto",
282282# ' @param model A \code{ts.model} object containing one of the allowed models
283283# ' @param ... Additional parameters (not used)
284284# ' @return A \code{gmwm} object with the structure:
285- # ' \itemize{
286285# ' \item{estimate}{Estimated Parameters Values from the GMWM Procedure}
287286# ' \item{init.guess}{Initial Starting Values given to the Optimization Algorithm}
288287# ' \item{wv.empir}{The data's empirical wavelet variance}
@@ -311,7 +310,6 @@ gmwm = function(model, data, model.type="imu", compute.v="auto",
311310# ' \item{starting}{Indicates whether the procedure used the initial guessing approach}
312311# ' \item{seed}{Randomization seed used to generate the guessing values}
313312# ' \item{freq}{Frequency of data}
314- # ' }
315313update.gmwm = function (object , model , ... ){
316314 # Do we have a valid model?
317315 if (! is.ts.model(model )){
@@ -428,7 +426,6 @@ update.gmwm = function(object, model, ...){
428426# ' ability to interpret with respect to \code{freq}, then use
429427# ' \code{AR1} terms.
430428# ' @return A \code{gmwm} object with the structure:
431- # ' \itemize{
432429# ' \item{estimate}{Estimated Parameters Values from the GMWM Procedure}
433430# ' \item{init.guess}{Initial Starting Values given to the Optimization Algorithm}
434431# ' \item{wv.empir}{The data's empirical wavelet variance}
@@ -457,7 +454,6 @@ update.gmwm = function(object, model, ...){
457454# ' \item{starting}{Indicates whether the procedure used the initial guessing approach}
458455# ' \item{seed}{Randomization seed used to generate the guessing values}
459456# ' \item{freq}{Frequency of data}
460- # ' }
461457gmwm_imu = function (model , data , compute.v = " fast" , robust = F , eff = 0.6 , ... ){
462458
463459 x = gmwm(model = model ,
@@ -537,7 +533,6 @@ print.gmwm = function(x, ...){
537533# ' @param B An \code{int} that indicates how many bootstraps should be performed.
538534# ' @param ... Other arguments passed to specific methods
539535# ' @return A \code{summary.gmwm} object with:
540- # ' \itemize{
541536# ' \item{estimate}{Estimated Theta Values}
542537# ' \item{testinfo}{Goodness of Fit Information}
543538# ' \item{inference}{Inference performed? T/F}
@@ -549,7 +544,6 @@ print.gmwm = function(x, ...){
549544# ' \item{seed}{Seed used during guessing / bootstrapping}
550545# ' \item{obj.fun}{Value of obj.fun at minimized theta}
551546# ' \item{N}{Length of Time Series}
552- # ' }
553547# ' @export
554548# ' @author JJB
555549summary.gmwm = function (object , inference = NULL ,
@@ -700,11 +694,9 @@ print.summary.gmwm = function(x, ...){
700694# ' @param n.ahead Number of observations to forecast
701695# ' @param ... Additional parameters passed to ARIMA Predict
702696# ' @return A \code{predict.gmwm} object with:
703- # ' \itemize{
704697# ' \item{pred}{Predictions}
705698# ' \item{se}{Standard Errors}
706699# ' \item{resid}{Residuals from ARIMA ML Fit}
707- # ' }
708700# ' @export
709701predict.gmwm = function (object , data.in.gmwm , n.ahead = 1 , ... ){
710702
0 commit comments