05-20-2019
FB1
Calcite | Level 5
Member since
04-08-2018
- 5 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by FB1
Subject Views Posted 1233 05-20-2019 10:19 AM 1248 05-20-2019 09:20 AM 1276 05-17-2019 10:16 AM 1304 05-17-2019 04:13 AM 973 01-28-2019 05:03 AM -
Activity Feed for FB1
- Posted Re: PROC QUANTREG on Statistical Procedures. 05-20-2019 10:19 AM
- Posted Re: PROC QUANTREG on Statistical Procedures. 05-20-2019 09:20 AM
- Posted Re: PROC QUANTREG on Statistical Procedures. 05-17-2019 10:16 AM
- Posted PROC QUANTREG on Statistical Procedures. 05-17-2019 04:13 AM
- Posted Is SAS IML NLPLM function equivalent to MATlab lsqcurvefit function? on SAS/IML Software and Matrix Computations. 01-28-2019 05:03 AM
05-20-2019
09:20 AM
Would it make sense to put a floor (to 0) on observed Ys and then build a model on log(Y) as you suggested?
... View more
05-17-2019
10:16 AM
Thanks for you answer. It's option 2., I need to build a model that predicts only positive values, but my Ys observed are both positive and negative. I will absolutely read the article you suggest. In the meanwhile, thanks again.
... View more
05-17-2019
04:13 AM
Hello everybody, is it possible to add boundaries in proc quantreg? Here's my code: proc quantreg data=d
algorithm=simplex outest=out ci=sparsity plots=none;
model y= x1 x2 x3 / quantile=&q.;
output out=out p=q res=r;
run; I would like to add the following condiiton on y: y>=0 Thanks a lot.
... View more
01-28-2019
05:03 AM
Hello SAS experts, I'm trying to move a script from Matlab to SAS IML. I did it and it works apparently, but I am getting different results with the functions: Matlab x = lsqcurvefit(f, p, GC, DD'); SAS: /* fun=f-dd and GC already set as parameter in fun.*/
CALL NLPLM (rc, xr, "fun", p, opt); Are they equivalent? According to the documentation it seems so. Thanks a lot.
... View more