06-08-2023
superbug
Quartz | Level 8
Member since
12-27-2019
- 164 Posts
- 26 Likes Given
- 1 Solutions
- 3 Likes Received
-
Latest posts by superbug
Subject Views Posted 1123 06-06-2023 04:48 PM 1204 06-05-2023 03:38 PM 1324 04-28-2023 02:37 PM 1354 04-28-2023 01:34 PM 1361 04-28-2023 01:26 PM 1402 04-28-2023 11:33 AM 1639 07-08-2022 11:27 AM 1646 07-08-2022 10:34 AM 1651 07-08-2022 09:52 AM 1702 07-07-2022 05:10 PM -
Activity Feed for superbug
- Posted Re: PROC GLIMMIX model both dichotomous and continuous independent variable on SAS Programming. 06-06-2023 04:48 PM
- Liked Re: PROC GLIMMIX model both dichotomous and continuous independent variable for Rick_SAS. 06-06-2023 04:48 PM
- Posted PROC GLIMMIX model both dichotomous and continuous independent variable on SAS Programming. 06-05-2023 03:38 PM
- Liked Re: proc print PDF 90 degree counterclockwise orientation for Reeza. 04-28-2023 04:32 PM
- Posted Re: proc print PDF 90 degree counterclockwise orientation on SAS Programming. 04-28-2023 02:37 PM
- Liked Re: proc print PDF 90 degree counterclockwise orientation for Quentin. 04-28-2023 01:44 PM
- Posted Re: proc print PDF 90 degree counterclockwise orientation on SAS Programming. 04-28-2023 01:34 PM
- Posted Re: proc print PDF 90 degree counterclockwise orientation on SAS Programming. 04-28-2023 01:26 PM
- Posted proc print PDF 90 degree counterclockwise orientation on SAS Programming. 04-28-2023 11:33 AM
- Posted Re: How to extract some data from correlation matrix on SAS Programming. 07-08-2022 11:27 AM
- Posted Re: How to extract some data from correlation matrix on SAS Programming. 07-08-2022 10:34 AM
- Liked Re: How to extract some data from correlation matrix for PaigeMiller. 07-08-2022 10:24 AM
- Posted Re: How to extract some data from correlation matrix on SAS Programming. 07-08-2022 09:52 AM
- Posted How to extract some data from correlation matrix on SAS Programming. 07-07-2022 05:10 PM
- Posted Re: Boxplot--how to label 75th percentile, mean, median, etc. this kind of statistics in boxplot on SAS Programming. 02-28-2022 03:39 PM
- Posted Boxplot--how to label 75th percentile, mean, median, etc. this kind of statistics in boxplot on SAS Programming. 02-28-2022 02:38 PM
- Posted Re: proc logistic inmodel on SAS Procedures. 02-02-2022 05:08 PM
- Liked Re: proc logistic inmodel for Reeza. 02-02-2022 05:06 PM
- Liked Re: proc logistic inmodel for Reeza. 02-02-2022 05:06 PM
- Liked Re: proc logistic inmodel for Rick_SAS. 02-02-2022 05:06 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1 1 2 -
My Liked Posts
Subject Likes Posted 2 12-21-2020 10:36 AM 1 01-14-2020 10:46 AM
06-06-2023
04:48 PM
@PaigeMiller Thank you so much for your help!
... View more
06-05-2023
03:38 PM
I am trying to model the data using a two-level model. Student nested in school. My dependent variable "pass" is dichotomously coded (1, 0). My independent variable includes both dichotomously coded variable first and status (1, 0) and continuous variable "practice score" as below
PROC GLIMMIX
DATA=pred METHOD=LAPLACE NOCLPRINT;
CLASS SCHOOLNUM;
MODEL PASS (EVENT="1")=first practice_score status/CL DIST=BINARY LINK=LOGIT SOLUTION;
RANDOM INTERCEPT/ SUBJECT=SCHOOLNUM S CL TYPE=VC;
COVTEST /WALD;
run;
Based on the fixed effects estimates as in the picture below, the probability of pass for first=1, status=1, is exp(-5.7755+0.7758+0.00872461.1849)/(1+exp(-5.7755+0.7758+0.008724+1.1849))=0.02175, which is too low from expected.
Where was wrong with my SAS code above? Any help would be much appreciated. Thanks!
... View more
04-28-2023
02:37 PM
@Tom It is not a mistake. Once SAS produce the desired format, it will replace the other software.
... View more
04-28-2023
01:34 PM
@Quentin Thanks for your comments.
The desired format was produced by another software. I need to replicate the results using SAS.
... View more
04-28-2023
01:26 PM
@Reeza Thanks much for looking into my question!
The desired is when you view an portrait orientation table after 90 degree counterclockwise rotation.
I opened the PDF generated using the code in Adobe. In view-->rotation view-->counterclockwise, I got the desired format.
I am wondering how to get the desired format using SAS.
Thanks!
... View more
04-28-2023
11:33 AM
The code below provide me landscape orientation
options orientation=LANDSCAPE topmargin=0.25in bottomargin=0.25in rightmargin=0.25in leftmargin=0.25in;
ods listing close;
ods pdf file="....\Result_SAS.pdf" ;
proc print data=summary noobs;
id pd;
by id ;
var v1 v2 v3;
pageby id;
run;
ODS pdf close;
ods pdf;
run;
use the code above, I got the table presented as below in PDF
But I need the table in the produced PDF show as in the picture below
Any help would much appreciated!
... View more
07-08-2022
11:27 AM
@PaigeMiller
Thanks again for your time. I learned a lot from your code.
As I mentioned in my previous message. My correlation matrix was from another source, which saved as .csv. I used SAS to read in. If I directly apply your code, I can only get the correlations of the last row. That's why I need to figure out each step of your code, so that I can apply it or modify it as needed.
I very much appreciate your help and expertise! Thanks!
... View more
07-08-2022
10:34 AM
@PaigeMiller
Thanks so much for your code!
Since I got my correlation matrix from another source, I need to read it into SAS.
I applied your code, but the result I got only contains the correlation between the first and the last variable.
So I run your example code step by step to check what appended in each step. My trial is as following
proc corr data=sashelp.class noprob nosimple outp=try;
var age height weight;
/* ods output pearsoncorr=corrs;*/
run;
data try1;
set try;
if _TYPE_="CORR";
run;
data try1;
set try1;
drop _TYPE_;
run;
data try2;
set try1;
length variable2 $ 32;
array r _numeric_;
do j=_n_+1 to dim(r);
corr=r(j);
variable2=vname(r(j));
end;
run;
But the result table I got is like the following. The corr column only contains the correlations from the last row. I can't figure out how to fix that. Could you please give me direction? Thank you!
... View more
07-08-2022
09:52 AM
@Ksharp
As always, thanks a bunch!
a big thumb up to your expertise!
... View more
07-07-2022
05:10 PM
Below is the lower triangle of my correlation matrix.
I want to extract the correlations that >0.2 but not equal 1 (I am not interested in the diagonal 1s). My matrix is 180 x 180. What's the SAS code/function that can let me quickly get what I need?
Thanks much in advance!
... View more
02-28-2022
03:39 PM
@Reeza
Thanks so much for the help! a big thumb to you!!
... View more
02-28-2022
02:38 PM
I used the following simple code to produce boxplot.
proc sgplot data=have;
vbox score / category=year ;
xaxis label="year";
yaxis label="Score";
run;
If I want to label statistics such as 75th precentile, mean, median, 25th percentile in the boxplot, (as picture below) how should a modify the code above? Thank you!
... View more
02-02-2022
05:08 PM
@Reeza @Rick_SAS @Ksharp
Thank you all so much for your expertise!
I very much appreciate your time and help!
... View more
02-02-2022
03:47 PM
@Reeza
Thanks much for providing the information!
My sas code is as below
proc logistic data=d1 outmodel=outp_d1;
where first=1;
class sex (ref='0')/param=ref;
model pass (event="1")= sex time passrate/expb;
run;
in my code above, male is coded as 0. By using the code above, I got the following output, what does 1 (in bold) following sex mean? Does it mean 0.3299 is the parameter estimate for female? My results is a little bit counter intuitive. I'd like to check with you expert. Thank you for taking time to answer my question.
Analysis of Maximum Likelihood Estimates
Parameter
DF
Estimate
Standard Error
Wald Chi-Square
Pr > ChiSq
Exp(Est)
Intercept
1
-3.7746
0.1433
693.8620
<.0001
0.023
sex
1
1
0.3299
0.0439
56.5428
<.0001
1.391
time
1
-0.00713
0.000960
55.2062
<.0001
0.993
pass
1
7.3763
0.2057
1285.7808
<.0001
1597.655
... View more
02-02-2022
11:12 AM
@Rick_SAS
I tried as you suggested. The probabilities are still a little higher by coping and pasting the coefficients than using the proc logistic inmodel procedure. Is there anything we can do about proc logistic inmodel procedure? Or is there anything wrong of my proc logistic inmodel as below? Thank you!!
proc logistic inmodel=outp_d1;
score clm data=pre11 out=prob_first;
where first=1 ;
run
... View more