SAS Procedures

Help using Base SAS procedures
BookmarkSubscribeRSS Feed
cynderisingryffindor
Calcite | Level 5

Background: 30 participants, 4 tests (1,2,3,4) at 7 frequencies (125,250,500,1000,2000,4000,8000 Hz) in 2 rooms (a , b). Model: mixed effects

model compares test 1 at frequency 8000 (frequency 7) to other tests. The basic question is to compare test 1 to test 4 at all frequencies.

Code:

proc mixed data=roomb empirical method=ML;

  class  User_ID Ears;

  model Y_= Test2 Test3 Test4 Freq1 Freq2 Freq3 Freq4 Freq5 Freq6

                 Test4*Freq1 Test4*Freq2 Test4*Freq3 Test4*Freq4 Test4*Freq5 Test4*Freq6/s outpm=predict;

  random intercept /subject = User_ID;

  random intercept /subject = Ears(User_ID);

run;

I want to run bonferonni's correction test, but I am unable to. Could someone please help me?

1 REPLY 1
Haris
Lapis Lazuli | Level 10

Here's an example for SAS documentation--seems like you need an ADJUST statement in the LSMEANS commanc:

proc mixed;

  class A;

  model y = A / ddfm=satterth;

  repeated / group=A;

  lsmeans A / adjust=smm adjdfe=row;

run;

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1324 views
  • 0 likes
  • 2 in conversation