l**********8 发帖数: 305 | 1 Data 是这样的, response y, predictor x1 , x2, 一共50 个 obs, 要怎样才能写
成function(y, x1, x2) 的形式 fit regression by successive orthogonation | l**********8 发帖数: 305 | 2 还有一个小问题,假设 X 是个predictor matrix,那么我想对All the
predictors are standardized to have mean zero and unit norm.
for(i in 1:ncol(xmatrix))
xmatrix[,i]<-(xmatrix[,i]-mean(xmatrix[,i]))/sd(xmatrix[,i])
和以下的code是不是等价的
for(i in 1:dim(x)[2])
x[,i]<-scale(x[,i]) |
|