BookmarkSubscribeRSS Feed
louise0828
Calcite | Level 5

I have a dataset with a continuous variable specifying the cumulative dose of a drug received at time t (drug received at multiple time points), a visit day variable, and a continuous outcome variable. I am fitting a model that cubic spline model with knots at the study days the drug is received to model the outcome variable with cumulative dose and a spline for visit day as predictors (and the interaction of day with dose) with subject specific intercept and slope. Below is the model code that I've used:

 

proc glimmix data=dat;

     class subjectid;

     effect = spl(spline day/degree=3 knotmethod=list(5 10 15));

     model outcome = spl | dose;

     random intercept day / subject=subjectid;

run;

 

I would like to estimate the contrast for a subject receiving a dose of 20 and a subject receiving a dose of 10 at day 12. I tried to write the following estimate statement:

estimate "Dose 20 vs Dose 10 at Day 12" spl*dose [1, 12 20][-1, 12 10];

 

But the estimate is showing as "Non-est". Am I writing the contrast wrong? 

1 REPLY 1
louise0828
Calcite | Level 5

I have a dataset with a continuous variable specifying the cumulative dose of a drug received at time t (drug received at multiple time points), a visit day variable, and a continuous outcome variable. I am fitting a model that cubic spline model with knots at the study days the drug is received to model the outcome variable with cumulative dose and a spline for visit day as predictors (and the interaction of day with dose) with subject specific intercept and slope. Below is the model code that I've used:

 

proc glimmix data=dat;

     class subjectid;

     effect = spl(spline day/degree=3 knotmethod=list(5 10 15));

     model outcome = spl | dose;

     random intercept day / subject=subjectid;

run;

 

I would like to estimate the contrast for a subject receiving a dose of 20 and a subject receiving a dose of 10 at day 12. I tried to write the following estimate statement:

estimate "Dose 20 vs Dose 10 at Day 12" spl*dose [1, 12 20][-1, 12 10];

 

But the estimate is showing as "Non-est". Am I writing the contrast wrong? 

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 401 views
  • 0 likes
  • 1 in conversation