我想知道如何使用实数变量作为变量名。例如
data have;
input
Y 0.133 0.124 0.1242 0.142 ;
datalines;
123 121 214 241 241
431 143 141 241 124
214 124 214 142 241
531 432 134 412 124
243 124 134 134 123
;
proc transpose data=have out=tall (rename=col1=x);
by y notsorted;
var /* what should I put here? */;
run;
ods html file='hbox-plot.html';
proc sgplot data=tall;
hbox x / category=y;
yaxis type=linear;
run;
ods html close;
尝试在 proc transponse 中使用 var selection 中的实际值时出现错误:语法错误。我的预期输出将是箱线图,在 x 轴上我有基于上述实际值的信息,在 y 轴上我有关于 y 的信息。