Я создал отчет (proc report), и все попытки (после посещения университета google) транспонировать мои данные с треском провалились.
proc report data=dataset1;
where cluster_id=1;
column ORGANISATION_CODE
ORGANISATION_NAME
ORG_TYPE
org_type_name
CLUSTER_ID
CLUSTER_NAME
CLUSTER_TYPE
CountOFD
CountOFC;
define ORGANISATION_CODE / display 'Organisation Code' CENTER
style(column)={width=1.5in} ;
define ORGANISATION_NAME / display 'Organisation Name' lEFT
style(column)={width=1.5in} ;
define org_type_name /display 'Organisation Type' CENTER
style(column)={width=1.5in} ;
define org_type_name /display 'Organisation Type Name' CENTER
style(column)={width=1.5in} ;
define CLUSTER_TYPE / display 'Cluster Type' CENTER
style(column)={width=1.5in} ;
define CLUSTER_NAME / display 'Cluster Name' CENTER
style(column)={width=1.5in} ;
define CLUSTER_ID / display 'Cluster ID' CENTER
style(column)={width=1.5in} ;
define CountOFD / display 'CountOFD' CENTER
style(column)={width=1.5in} ;
define CountOFC / display 'CountOFD' CENTER
style(column)={width=1.5in} ;
run;
ods html close;