07-01-2021
cjacks21
Calcite | Level 5
Member since
06-09-2020
- 22 Posts
- 1 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by cjacks21
Subject Views Posted 1238 06-24-2021 12:20 PM 1238 06-24-2021 12:16 PM 1246 06-24-2021 11:44 AM 3247 06-23-2021 11:58 AM 1389 06-10-2021 05:33 PM 1442 05-21-2021 12:22 PM 1449 05-21-2021 11:08 AM 3318 05-18-2021 03:29 PM 3331 05-18-2021 11:03 AM 3356 05-17-2021 11:16 AM -
Activity Feed for cjacks21
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 06-24-2021 12:20 PM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 06-24-2021 12:16 PM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 06-24-2021 11:44 AM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 06-23-2021 11:58 AM
- Posted Re: Proc Mixed Fixed Effects Class Variable with more than two levels and values. on Statistical Procedures. 06-10-2021 05:33 PM
- Posted Re: Proc Mixed Fixed Effects Class Variable with more than two levels and values. on Statistical Procedures. 05-21-2021 12:22 PM
- Posted Re: Proc Mixed Fixed Effects Class Variable with more than two levels and values. on Statistical Procedures. 05-21-2021 11:08 AM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 05-18-2021 03:29 PM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 05-18-2021 11:03 AM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 05-17-2021 11:16 AM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 05-17-2021 11:04 AM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 05-13-2021 08:28 PM
- Posted Re: Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 05-13-2021 02:29 PM
- Posted Proc MIXED MODEL Warning: For covariance type Unstructured on Statistical Procedures. 05-12-2021 03:46 PM
- Posted Proc Mixed Fixed Effects Class Variable with more than two levels and values. on Statistical Procedures. 05-11-2021 02:39 PM
- Posted Output New SAS Data Set on New SAS User. 10-15-2020 11:49 AM
- Posted Re: How to compare class variables with more than two levels in proc mixed? on New SAS User. 09-17-2020 12:54 PM
- Posted Re: How to compare class variables with more than two levels in proc mixed? on New SAS User. 09-17-2020 12:30 PM
- Posted Re: How to compare class variables with more than two levels in proc mixed? on New SAS User. 09-17-2020 12:15 PM
- Posted Re: How to compare class variables with more than two levels in proc mixed? on New SAS User. 09-17-2020 12:01 PM
-
Posts I Liked
Subject Likes Author Latest Post 1
06-24-2021
03:13 PM
I saw a couple things in the output that concerned me. Two of your continuous effects had no degrees of freedom in your Type3 tests, and one is year.
Consider replacing
random intercept year / type= un subject=rfa_id;
with a random subject effect and a repeated year effect. With your current random statement, you are not capturing the repeated nature of your data (of course that assumes that you really do have multiple measurements over time on the subjects). I suggest this:
random intercept / subject=rfa_id;
repeated year /subject=rfa_id type=ar(1);
Note that this requires you to treat year as a categorical variable, and so it would have to be added to the CLASS statement.
Then in your model statement, add the option
ddfm=bw
This should enable the degrees of freedom to reflect the repeated nature of the data, and I believe will enable all of your variables to have numerator degrees of freedom for the F test.
SteveDenham
... View more
06-10-2021
05:33 PM
Thank you. This worked.
... View more
10-15-2020
12:50 PM
1 Like
Seems like your data set is already created but in your work folder. That means you can use it directly in proc mixed, nothing further is required. To save it to a permnanet library create your library and move the file there. libname myFiles '/folders/myfolders/'; data myFiles.class; *output data set - saved to myFiles library; set sashelp.class; *input data set; run; *use it later in proc mixed; proc mixed data=myFiles.class ....;
... View more
09-18-2020
06:17 AM
@cjacks21 wrote:
Okay. I believe I have something. I added the \Diff statement in the LSMEANS line and I think I can see that the class variable race_combined and risk exposure are compared between the each other and the different levels between each. Is this correct?
Not sure what you are looking at, so I can't say if you are correct or not. In the future, please show the portion of the results you are looking at as a screen capture here in your message. Most people, including me, do not download attachments.
... View more