|
板凳

楼主 |
发表于 2011-3-25 10:20:40
|
只看该作者
Re: SAS中输出到RTF如何实现上下标
自己写代码,改变字符size的大小。
给个例子你把。
goptions reset=all border;
title1 h=1.5 "Relationship of pH to H"
move=(-0,-.75) h=1 "3"
move=(+0,+.75) h=1.5 "O"
move=(+0,+.75) h=1 "+"
move=(-0,-.75) h=1.5 " Concentration";
/* title2 h=1 "here is log" */
/* move=(-0,-.75) h=0.5 "10" */
/* move=(-0,+.75) h=1 "(5x+10) and e"*/
/* move=(+0,+.75) h=0.5 "0.5" */
/* move=(-0,-.75) h=1 "form"; */
data class;
set sashelp.class;
if age <13 then ref = 90;
else ref = 120;
run;
proc sgplot;
scatter x = age y = weight;
refline 90 120/axis = y label =('normal' 'over-weighted')
LABELPOS= Min
LABELLOC=inSIDE;
run; quit; |
|