tags:

views:

88

answers:

1

Hi, I'm trying to replicate a linear discriminant analysis output from SPSS in R, and I'm having difficulties to find a way to perform an m-box test.

The only thing I found was some code posted in a forum, to manually implement the process, but I was wondering if there is nothing for this purpose already incorporated in the language itself.

+1  A: 

There is code that can be found with a simple rseek search. It's not typically done because it's very high sensitivity leads to significant p-values that may not mean much.

John
You are right, that is the code I was referring to, but it is manually operating with the matrices, I would want to know if there is a routine already implemented in the language to do that.
Sam
no is the correct answer... Code is code. What you have there online is a function. Add it to R and now it's part of your R environment.
John