Is there any package in R that contains algorithm for feature selection using Gram-Schmidt orthogonalization?
Asked
Active
Viewed 1,896 times
3 Answers
2
See "A New Method for Generating the Design Matrix of a Linear Regression Model" by Adel M. Hallawa and Abdul-Mordy H. Azzam in The Egyptian Statistical Journal, ISSR, Cairo University

Mohamed Ali
- 21
- 2
0
The "far" package has it.
Use Rseek. It's the second thing that came up in a search.

John
- 23,360
- 7
- 57
- 83
-
"far" package has only orthogonalization method which is easy to find. Actually I can use QR decomposition to orthogonalize a matrix, but it isn't aim of my question. What I'm looking for is algorithm using this orthogonalization method. – pixel Jul 25 '10 at 20:02
-
I guess I was thrown in this from the documentation for far ----- "orthonormalization - Orthonormalization of a set of a matrix Description: Gram-Schmidt orthogonalization of a matrix considering its columns as vectors. Normalization is provided as will." – John Jul 26 '10 at 15:54