@Rick_SAS wrote: I'm afraid I can't be more specific because I honestly don't know what is happening with your data. You haven't provided any details. What quantiles are you using? How many effects? Are there interaction or higher-order effects? What selection method are you using? Only by looking at your data and the details of the methods can you definitively discover what is happening. Here's a snippet of code to distill the essence of what I am attempting to model: PROC QUANTSELECT data=WORK.DATA seed=1;
model y = x1 x2 x3 x4 x5 x6 x7 x8 x9 x10/
quantile = .50
selection = LASSO(select=AICC stop=AICC sh=5 choose=SBC ADAPTIVE)
details = SUMMARY;
run; So basically, it's median regression with adaptive lasso. The actual number of effects is greater, but I think I can convey the same situation without enumerating the full list. If I run the script as is, the following effects are selected: x1, x3, x4, x7, x8. If I introduce additional effects x11-x19 and run the script, the following effects are selected: x1, x3, x7, x2, x5, x6, x9, x10. None of effects x11-x19 appear in the selection summary output at any step of the selection process, however I will try your suggestion of expanding the output details and report back.
... View more