| basis.mine | R Documentation |
The basis.mine function decomposes a multivariate data set on a user-defined basis.
basis.mine(simuls, basis.args = list(
baseL=1*outer(sort(0:(ncol(simuls)-1)%%5),0:4,"==") ) )
simuls |
a data.frame of size |
basis.args |
a list of arguments for the polynomial decomposition. The |
The default basis.args argument generates a projection on a moving-average basis. But if in the multisensi function this basis.args argument is not given for reduction=basis.mine, the execution will be stopped.
H |
a data.frame of size |
L |
a matrix of size |
call.info |
list with the element |
data(biomasseY)
M <- 1*outer(sort(0:(ncol(biomasseY)-1)%%5),0:4,"==")
norm.M <- sqrt(colSums(M^2))
for (i in 1:ncol(M)){
M[,i]=M[,i]/norm.M[i]
}
res <- basis.mine(biomasseY, basis.args=list(baseL=M))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.