BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mariko5797
Pyrite | Level 9

Is there a way to calculate the p-values from Cochran-Armitage Trend Test when I am only given frequencies like so: 

data have;
 input dose $ response $ count;
 cards;
 10ug  yes 3
 20ug  yes 1
 30ug  yes 1
 Plac  yes 2
 10ug  no  1
 20ug  no  3
 30ug  no  4
 Plac  no  1
;
run;

Or do I need the combinations repeating for

proc freq data = have;
 tables dose*response / trend;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
SAS_Rob
SAS Employee

You can use the WEIGHT statement

 

proc freq data = have;

weight count;
tables dose*response / trend;
run;

View solution in original post

1 REPLY 1
SAS_Rob
SAS Employee

You can use the WEIGHT statement

 

proc freq data = have;

weight count;
tables dose*response / trend;
run;

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 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
  • 1 reply
  • 366 views
  • 0 likes
  • 2 in conversation