我的代码如下:
use http://www.ats.ucla.edu/stat/data/uis.dta, clear
stset time, failure(censor)
streg , dist(weibull)
stcurve, hazard
我正在寻找一种方法来个性化stcurve
中输出图的格式。例如,如何更改浅蓝色背景颜色,标签,字体大小和绘图的标题?
答案 0 :(得分:2)
您可以先查看help stcurve
:指向help twoway_options
的链接
一切都在那里。
有关字体,请参阅Stata手册here。
以下是您所问的问题的示例:
use http://www.ats.ucla.edu/stat/data/uis.dta, clear
stset time, failure(censor)
streg , dist(weibull)
graph set window fontface "Times New Roman"
#delimit ;
stcurve, hazard
title("new title")
graphregion(color(white) icolor(white))
plotregion(color(white) icolor(white))
ytitle( "Y title",size(3.5))
xtitle( "X title",size(3.5)) ;
#delimit cr