Не просматривая данные и код LTA, вы можете сохранить содержимое окна OUTPUT
и с помощью ODS с style=monotype
скопировать его в документ с шагом DATA _NULL_
.
Пример (код LCA со страницы плагина):
DATA test;
INPUT it1 it2 it3 it4 count;
DATALINES;
1 1 1 1 5
1 1 1 2 5
1 1 2 1 9
1 1 2 2 8
1 2 1 2 5
1 2 2 1 8
1 2 2 2 4
2 1 1 1 5
2 1 1 2 3
2 1 2 1 6
2 1 2 2 8
2 2 1 1 3
2 2 1 2 7
2 2 2 1 5
2 2 2 2 10
;
RUN;
dm 'clear output';
PROC LCA DATA=test ;
NCLASS 2;
ITEMS it1 it2 it3 it4;
CATEGORIES 2 2 2 2;
FREQ count;
SEED 100000;
RHO PRIOR=1;
RUN;
* save contents of output window to catalog entry;
dm 'output; saveas work.lca.results.output';
filename results catalog 'work.lca.results.output';
ods rtf file='results.rtf' style=monospace;
title; footnote;
options nodate nonumber nocenter;
* read contents of catalog entry and write to ODS;
data _null_;
infile results;
input;
line = _infile_;
file print ods;
put _ods_;
run;
ods rtf close;
Документ (изображение)
введите описание изображения здесь