LesezeichenAbonnierenRSS-Feed abonnieren
krl
Calcite | Level 5 krl
Calcite | Level 5

Hallo,

 

ich möchte zwei transponierte Tabellen im pdf-Dokument aus SAS nebeneinander darstellen. Hat jemand eine Idee?

 

Vielen Dank!

1 ANTWORT 1
BrunoMueller
SAS Super FREQ

Mit ODS LAYOUT lässt sich das gut machen.

 

Hier ein Programmbeispiel:

 

ods pdf file="c:\temp\sample.pdf";

title "Overall Title";
footnote "Overall Footnote";

ods layout gridded columns=2;

ods region;
title "Region Title 1";
footnote "Region Footnote 1";
proc print data=sashelp.class;
  where sex = "F";
run;

ods region;
title "Region Title 2";
footnote "Region Footnote 2";
proc print data=sashelp.class;
  where sex = "M";
run;

ods layout end;
ods pdf close;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Diskussionsstatistiken
  • 1 Antwort
  • 962 Aufrufe
  • 1 Kudo
  • 2 in Unterhaltung