Features: |
EDIT statement
|
Other features: |
|
Data set: | Exprev |
options nodate pageno=1 pagesize=60 linesize=72;
ods listing;
ods select moments;
proc univariate data=exprev mu0=3.5; var Quantity; title "Default Moments Table"; run;
ods listing close;
ods select moments;
ods path sasuser.templat(update) sashelp.tmplmst(read);
proc template; edit base.univariate.moments;
double_space=on; underline=on; overline=on;
label="Custom Moments"; double_space=on; style=data{color=orange fontstyle=italic};
edit head;
style=header{color=green fontstyle=italic};
just=left;
end; end; run;
ods listing;
ods select moments;
proc univariate data=exprev mu0=3.5; var Quantity; title "Custom Moments Table"; run;
ods listing close;
proc template; delete base.univariate.moments; end; title;
proc template; edit base.univariate.moments;
style=header{color=green fontstyle=italic};
proc univariate data=exprev mu0=3.5; var Quantity; title "Custom Moments Table"; run;