你好聪明的人。
有人能告诉我如何在 SAS EG 或 SAS PROC GPLOT程序中的透明线图中获得图表/线条? (2条线在彼此的顶部,因此无法看到底线)。
答案 0 :(得分:1)
只需添加选项transparency
ods graphics on / width=66%;
data test;
do x = 1 to 10 by .1;
up = 11 - x;
down = 9 - x;
y = x*x/10;
output;
end;
proc sgplot data=test;
series x=x y=y / lineattrs=(color=orange thickness=3);
band x=x upper=up lower=down / transparency=.3;
run;