如何修改stcurve的绘图格式?

时间:2016-11-23 01:34:06

标签: plot stata survival-analysis

我的代码如下:

    use http://www.ats.ucla.edu/stat/data/uis.dta, clear
    stset time, failure(censor)
    streg , dist(weibull) 
    stcurve, hazard

我正在寻找一种方法来个性化stcurve中输出图的格式。例如,如何更改浅蓝色背景颜色,标签,字体大小和绘图的标题?

1 个答案:

答案 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