100 likes | 181 Views
Explore a case of blatant plagiarism in Martha Cox's Cancer Outcomes Research Program. A demonstration using SAS programming to generate multiple tables on a single page. Learn how to enhance presentation and organization.
E N D
Writing Multiple Outputs to One Pagea case of blatant plagiarismMartha CoxCancer Outcomes Research Program
Using STARTPAGE=never ods listing close; options orientation=landscape; odspdf file='MultipleTablesPerPage.pdf' notocstartpage=never; title 'Full Width'; proc print data=sashelp.shoes; where subsidiary = 'Algiers'; run; proc print data=sashelp.shoes; where subsidiary = 'Cairo'; run;
Using COLUMNS odspdfstartpage=now columns=2; title 'Panels'; proc print data=sashelp.class; where sex = 'F'; run; odspdfstartpage=now; proc print data=sashelp.class; where sex = 'M'; run;
Going back to full width odspdfcolumns=1 startpage=now ; title 'Back to Full Width'; proc print data=sashelp.retail(obs=20); run; ods _all_ close;