BookmarkSubscribeRSS Feed
Adambo
Obsidian | Level 7

Using the dataset shown below, I have calculated means and changes from baseline using the following codes:

sas1.png

 

 

proc means data = asas.ttest

       N MEAN STDERR STD;

       var RESULT;

       class TRT PARAMCD VISIT;

       title 'Mean BMI and HR';

run;

sas2.png

 

proc means data = asas.ttest

       N MEAN STDERR STD;

       var CHG;

       class TRT PARAMCD VISIT;

       title 'Change from Baseline of BMI and HR';

run;

sas3.png

 

I am now trying to perform Paired t-tests for Changes from Baseline (CHG) at two different time points (Week 6 & Week12), for the two different parameters (BMI & HR) for the two separate treatment groups (A & B) independently; That is, I want to analyze the effects (change from baseline) of the two treatments independently.

Secondly, I am trying to perform an ANCOVA to compare the changes from baseline between the two treatment groups, at the two time points, for the two different parameters, with the Baseline value as the covariate; That is, I want to compare the treatments.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 0 replies
  • 2405 views
  • 0 likes
  • 1 in conversation