Statistical Procedures

Programming the statistical procedures from SAS
BookmarkSubscribeRSS Feed
Daisy2
Obsidian | Level 7

I'm using a mixed model with multiple random and fixed effects (REML) and continuous y and I would like to try using bootstrapping to get more accurate CI or SE values since even with transformation or BoxCox my y-data are not always normal.  I don't find a proc to do this.  Can someone help?  I am quite familiar with JMP 14 and use SAS 7.154 a little bit.  Thanks.  Here's the code I'm starting with:

proc mixed data=phenoall;
  class hyb n pd loc;
  model nce=hyb n pd n*hyb pd*hyb n*pd;
  random loc block(loc) pass(loc) loc*n loc*hyb;
  lsmeans hyb / adjust=tukey;
run; 
2 REPLIES 2
PaigeMiller
Diamond | Level 26

Everything you ever wanted to know about bootstrapping in SAS

 

https://blogs.sas.com/content/iml/2018/12/12/essential-guide-bootstrapping-sas.html

--
Paige Miller
Daisy2
Obsidian | Level 7

Thanks.  Just curious, does the bootstrapping give you better SE for the fixed effects or the random effects?  

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 ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 941 views
  • 1 like
  • 2 in conversation