search for: xhaust

Displaying 3 results from an estimated 3 matches for "xhaust".

Did you mean: exhaust
1999 Oct 25
2
leaps: XHAUST returned error code -999
Hi there, This problem has been dogging me for a bit, and I'm trying to figure out why. When running the the subsets function in the leaps library, R is giving me the following error message > lvodsub <- subsets(pred, resp$LVOD) Warning message: XHAUST returned error code -999 in: leaps.exhaustive(a, really.big = really.big) but this still happens if I add the really.big option: > lvodsub <- subsets(pred, resp$LVOD, really.big=T) Warning message: XHAUST returned error code -999 in: leaps.exhaustive(a, really.big = really.big) The libr...
2005 May 11
2
Regsubsets()
...top.T + a + sd.a + a.max + d + sd.d + d.max + RPA + P + perc.stop.T + perc.a.T + perc.d.T + RPS + RPSS + sd.P.acc + P.dec + da.acc.1 + RMSACC + RDI + RPSI + P.acc + cov.v + cov.a + cov.d + sd.P + sd.v.run + RCS + T + mass.fin, data = DATASET, weights = count, nbest = 10, nvmax = 35, method = "exhaustive") I do however encounter the following warning message which I do not understand: > Reordering variables and trying again: Warning messages: 1: 14 linear dependencies found in: leaps.setup(x, y, wt = wt, nbest = nbest, nvmax = nvmax, force.in = force.in, 2: XHAUST returned error c...
2004 Feb 06
0
error message from regsubsets
Hi, I'm using regsubsets and it works fine when nvmax = 4. However when I go for any value above 4, I get the error: Warning message: XHAUST returned error code -999 in: leaps.exhaustive(a, really.big = really.big) I'm calling regsubsets as: lp <- regsubsets(x,y,nbest=1,nvmax=5,intercept=T,really.big=T, method="exhaustive") x is a data.frame with 40 variables and 277 observations (in the rows) and y is a vector of le...