Displaying 1 result from an estimated 1 matches for "spex_y".
Did you mean:
spex_x
2008 Apr 23
1
significant variables in GPLS ?
...equation again with just the selected variables.
I think I can analyse the significance of the variables via their weights.
I used the "gpls1a" term for two group classification. Here my code:
----------------------------------------------------------------------
library(gpls) #
> spex_Y<-read.csv("F:/GPLS/spex_Y.csv", header=TRUE, sep=";")#, row.names="ID") #
> spex_X<-read.csv("F:/GPLS/spex_X.csv", header=TRUE, sep=";")#, row.names="ID") #
>
> test <- glpls1a(spex_X, spex_Y$A_mell,K.prov=7, br=FALS...