Hi. I am usually a Stata user, so forgive my novice status with SAS. I am using SAS On Demand for the analysis for a crossover study using an AB/BA design. My code is relatively simple, namely: ------------------------ data trial;
length Drug1 $ 9;
length Drug2 $ 9;
input Patient Drug1 $ Drug2 $ Pain1 Pain2 @@;
datalines;
1 A B 7 1
2 B A 3 3
.......etc
64 B A 6 3
proc print data=trial;
run;
ods graphics on;
proc ttest data=trial plots=interval;
var Pain1 Pain2 / crossover= (Drug1 Drug2);
run;
ods graphics off; ------------------------ One of the graphs from the output is for Profiles over Treatment for (Pain1, Pain2). I attach this output and would like the y axis to go from 0-10 rather than 0-9 as SAS has done. I can't seem to get ODS Graphics Editor to work, so was wondering if there was a simple piece of code for the one thing within one graph that I want to change. Many thanks in advance.
... View more