This function performs the prediction lifting step over neighbourhoods and interpolation schemes.
AdaptNeigh(pointsin, X, coeff, nbrs, remove, intercept,
neighbours)
results. This is a ten item list giving the regression information chosen from the detail coefficient minimisation (i.e, the information supplied to AdaptNeigh
by AdaptPred
):
matrix of X
values corresponding to the neighbours of the removed point. The matrix consists of columns \(1,X[nbrs],X[nbrs]^2,...\) depending on the order of the prediction used and whether or not an intercept is used. Refer to any reference on linear regression for more details.
the matrix from which the prediction is made. In terms of Xneigh
, it is
\((Xneigh^T Xneigh)^{-1} Xneigh^T\) .
The regression coefficients used in prediction.
the prediction weights for the neighbours.
the predicted function value obtained from the regression.
vector of (modified) detail and scaling coefficients to be used in the update step of the transform.
if TRUE, an intercept was used in the regression.
a character vector denoting the type of regression used in the prediction ("Linear", "Quad" or "Cubic").
a vector of the detail coefficients from which AdaptPred
selects the minimum value. There are six entries. The first three entries represent the detail coefficients from regression with no intercept in increasing order of prediction. The second three details are values for regression with intercept.
the index into details (results[[9]]
) which produces the minimum value.
newinfo. A six item list containing extra information to be used in the main transform procedure (fwtnp
) obtained from the minimisation in AdaptNeigh
:
boolean value telling the configuration of the neighbours which produce the overall minimum detail coefficient.
the index into mindetails
(below) indicating the overall minimum detail coefficient produced by the procedure.
the indices into X
of the neighbours used in the best prediction scheme.
the indices into pointsin
of the neighbours used in the best prediction.
a vector of 3*neighbours
entries giving the minimum details produced by each call of AdaptPred
in AdaptNeigh
(for the different number and configuration of neighbours).
vector of 3*neighbours
entries giving the index (out of 6) of the schemes which produce the best predictions by each call of AdaptPred
in AdaptNeigh
.
The indices of gridpoints still to be removed.
the vector of grid values.
the vector of detail and scaling coefficients at that step of the transform.
the indices (into X
) of the neighbours to be used in the prediction step. Note that the value to this input is not important, since the procedure checks the neighbourhoods structure in the minimisation step anyway, but is for standardisation of arguments to the non-adaptive prediction schemes.
the index (into X
) of the point to be removed.
Boolean value for whether or not an intercept is used in the prediction step of the transform. (Note that this is actually a dummy argument, since it is not necessary for the computation of the detail coefficient in AdaptNeigh
, though is used for standardising its arguments with other prediction schemes for use in the fwtnp
function).
the number of neighbours to be considered in the computation of predicted values and detail coefficients.
Matt Nunes (nunesrpackages@gmail.com), Marina Knight
The procedure performs adaptive regression (through AdaptPred
) over the three types of regression and also over the 3*neighbours
configurations of neighbours. The combination (type of regression, configuration of neighbours) is chosen which gives the smallest detail coefficient (in absolute value).
AdaptPred
, fwtnp
#
# Generate some doppler data: 500 observations.
#
tx <- runif(500)
ty<-make.signal2("doppler",x=tx)
#
# Compute the neighbours of point 173 (2 neighbours on each side)
#
out<-getnbrs(tx,173,order(tx),2,FALSE)
#
# Perform the adaptive lifting step
#
an<-AdaptNeigh(order(tx),tx,ty,out$nbrs,173,FALSE,2)
#
an[[1]][[7]]
an[[2]][[3]]
#shows best prediction when removing point 173, with the neighbours used
Run the code above in your browser using DataLab