I ran the SAStraj program, and the result is shown in figure, but cannot be exported to a PDF file.I would appreciate it if someone could help me solve this problem. ods pdf file="E:\traj.pdf";
%macro traj(data, out, op, os ,oe, nn,order,tilte,subtitle);
PROC TRAJ DATA=&data OUT=&out OUTPLOT=&OP OUTSTAT=&OS OUTEST=&OE;
id pe_id;
VAR ecrf_06 ecrf_08 ecrf_10 ecrf_12;
INDEP T1-T4;
MODEL CNORM;
MIN 0;
MAX 100;
NGROUPS &nn;
ORDER ℴ
RUN;
%mend traj;
%traj(men, out, op, os ,oe,3, 4 4 4,Men,Group3);
ods pdf close;
... View more