data score;
input math@@; /* 横向解析数据 */
cards;
71 81 91 100
;
run;
%let exa=score;
data temp;
set &exa;
if math>80;
run;
proc print;
title "display of student &exa";
run;
sas宏变量
于 2022-12-26 00:18:31 首次发布
data score;
input math@@; /* 横向解析数据 */
cards;
71 81 91 100
;
run;
%let exa=score;
data temp;
set &exa;
if math>80;
run;
proc print;
title "display of student &exa";
run;