12-25-2021
Abbas_Arkawazi
Fluorite | Level 6
Member since
06-17-2021
- 7 Posts
- 6 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by Abbas_Arkawazi
Subject Views Posted 1246 12-23-2021 04:13 PM 2551 07-09-2021 02:24 PM 575 07-05-2021 07:02 AM 921 06-24-2021 07:28 AM 959 06-24-2021 03:54 AM 963 06-17-2021 10:44 AM 1026 06-17-2021 07:23 AM -
Activity Feed for Abbas_Arkawazi
- Liked Re: plot the model that obtain by proc nlmixed for StatsMan. 12-24-2021 11:44 PM
- Liked Re: plot the model that obtain by proc nlmixed for Reeza. 12-24-2021 12:18 AM
- Posted plot the model that obtain by proc nlmixed on Statistical Procedures. 12-23-2021 04:13 PM
- Tagged plot the model that obtain by proc nlmixed on Statistical Procedures. 12-23-2021 04:13 PM
- Tagged plot the model that obtain by proc nlmixed on Statistical Procedures. 12-23-2021 04:13 PM
- Tagged plot the model that obtain by proc nlmixed on Statistical Procedures. 12-23-2021 04:13 PM
- Liked Re: WARNING: The final Hessian matrix is full rank but has at least one negative eigenvalue for PaigeMiller. 07-14-2021 06:39 AM
- Liked Re: WARNING: The final Hessian matrix is full rank but has at least one negative eigenvalue for SteveDenham. 07-14-2021 06:39 AM
- Posted WARNING: The final Hessian matrix is full rank but has at least one negative eigenvalue on Statistical Procedures. 07-09-2021 02:24 PM
- Posted Parameter values in proc Nlmixed on Statistical Procedures. 07-05-2021 07:02 AM
- Tagged Parameter values in proc Nlmixed on Statistical Procedures. 07-05-2021 07:02 AM
- Tagged Parameter values in proc Nlmixed on Statistical Procedures. 07-05-2021 07:02 AM
- Tagged Parameter values in proc Nlmixed on Statistical Procedures. 07-05-2021 07:02 AM
- Liked Re: intial values for parms in proc nlmixed for Rick_SAS. 06-24-2021 07:35 AM
- Posted Re: intial values for parms in proc nlmixed on Statistical Procedures. 06-24-2021 07:28 AM
- Tagged intial values for parms in proc nlmixed on Statistical Procedures. 06-24-2021 03:56 AM
- Tagged intial values for parms in proc nlmixed on Statistical Procedures. 06-24-2021 03:56 AM
- Tagged intial values for parms in proc nlmixed on Statistical Procedures. 06-24-2021 03:55 AM
- Tagged intial values for parms in proc nlmixed on Statistical Procedures. 06-24-2021 03:55 AM
- Posted intial values for parms in proc nlmixed on Statistical Procedures. 06-24-2021 03:54 AM
-
Posts I Liked
Subject Likes Author Latest Post 3 3 1 2 3
12-23-2021
04:13 PM
Hi every one please help me with my problem. I have the model that estimated by proc nlmixed then i need to plot the actual and predicted. proc import datafile='C:\Users\Abbas Arkawazi\Desktop\test.xlsx' DBMS =xlsx Out=test; run; proc nlmixed data=test; parms b0= 10 b1=2 b2=.5 b3= 1 a=2 b=1 s= 150 ; m = b0+(b1*age)+(b2*gender)+(b3*creatin); y=urea; if status_u=1 then f=((a*b)*((1-exp(-exp((y-m)/s)))**(a-1))*((1+((exp(exp((y-m)/s))-1)**(a)))**(-(b+1)))) /(s*exp((-a*exp((y-m)/s))-((y-m)/s))) ; else f= (1+(((1-exp(-exp((y-m)/s)))/(exp(-exp((y-m)/s))))**a))**-b ; ll=log(f); model y ~ general(ll); run; please help me to plot the estimated model thank u very much
... View more
07-09-2021
02:24 PM
Hello, I am working on fitting nonlinear mixed model to my data using proc nlmixed. My model has four fixed effects & five random effects. But when I run the program, I get the following warning: WARNING: The final Hessian matrix is full rank but has at least one negative eigenvalue. Second-order optimality condition violated. Please help me solve this problem and guide me to the right way to solve this problem. My code is the following and the data is in the attachment: proc import datafile='C:\Users\Abbas Arkawazi\Desktop\test.xlsx' DBMS =xlsx Out=test; run; proc nlmixed data=test ; parms b0=1 b1=2 b2=3 b3=4 a=2 b=1 aa=3 bb=1 s=100; m =b0+(b1*age)+(b2*creatin)+(b3*gender); y=urea; if status_u=1 then f=((aa*bb*a*b)/s)*(exp(-b*exp((y-m)/s)))*((1-exp(-b*exp((y-m)/s)))**(a-1))*((((1-exp(-b*exp((y-m)/s)))**a)**(aa-1))/((1-((1-exp(-b*exp((y-m)/s)))**a))**(aa+1)))*((1+((((1-exp(-b*exp((y-m)/s)))**a)/(1-((1-exp(-b*exp((y-m)/s)))**a)))**aa))**(-bb-1)) ; else f= 1-((1+(((1-exp(-b*exp((y-m)/s)))**a)/(1-(1-exp(-b*exp((y-m)/s)))**a))**aa)**-bb) ; ll=log(f); model y ~ general(ll); run;
... View more
07-05-2021
07:02 AM
Hello everyone...please help me in how to chose the initial values for the parameters in the proc Nlmixed for the following model with attached data. proc import datafile='C:\Users\Abbas Arkawazi\Desktop\test.xlsx' DBMS =xlsx Out=test; run; proc nlmixed data=test; parms b0=70 b1=1 b2=8 b3=1 a=2 b=1 s=220; bounds a b > 0; m =b0+(b1*age)+(b2*creatin)+(b3*gender1); y=urea; if status_u=1 then f=((a*b)*((1-exp(-exp((y-m)/s)))**(a-1))*((1+((exp(exp((y-m)/s))-1)**(a)))**(-(b+1)))) /(s*exp((-a*exp((y-m)/s))-((y-m)/s))) ; else f= (1+(((1-exp(-exp((y-m)/s)))/(exp(-exp((y-m)/s))))**a))**-b ; ll=log(f); model y ~ general(ll); run;
... View more
06-24-2021
07:28 AM
Thank u very very much for your help, really it is a very important methods to chose initial values.
... View more
06-24-2021
03:54 AM
hello everybody can you help me in the problem in how we can chose the intial values for parms in the proc nlmixed? is there specified method can I chose from it the intial values for the parameters please help me, my distribution and the program is: proc nlmixed data=WORK.y; parms b0=1 b1=2 b2=2=1 a=1 b=1 s=2; m =b0+(b1*age)+(b2*creatin)+(b3*gender2); y=urea; if status_u=1 then f=((a*b)*((1-exp(-exp((y-m)/s)))**(a-1))*((1+((exp(exp((y-m)/s))-1)**(a)))**(-(b+1)))) /(s*exp((-a*exp((y-m)/s))-((y-m)/s))) ; else f= (1+(((1-exp(-exp((y-m)/s)))/(exp(-exp((y-m)/s))))**a))**-b ; ll=log(f); model y ~ general(ll); run;
... View more
06-17-2021
07:23 AM
hello everyone I am new in SAS please help me how I can use summation of variables in SAS like in the attached file?.
... View more
- Tags:
- statistics