2

Is there any package in R that contains algorithm for feature selection using Gram-Schmidt orthogonalization?

pixel
  • 24,905
  • 36
  • 149
  • 251

3 Answers3

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

1

See Appendix A here, for a Matlab code implementation of Forward selection with Gram-Schmidt orthogonalization. If nothing else is found, at least you could rewrite it in R.

gd047
  • 29,749
  • 18
  • 107
  • 146
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