2016-11-23 61 views
-1

我的代碼如下:如何修改stcurve的繪圖格式?

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

我正在尋找一種方式stcurve個性化輸出情節的格式。例如,如何更改淺藍色的背景顏色,標籤,字體大小和標題?

+0

在我看來太開放。這是要求一個Stata圖形很大一部分的個人教程! –

+0

這裏是一個教程http://data.princeton.edu/stata/graphics.html – timat

+0

@NickCox對不起,一般的問題。我是Stata新手。 – Milad

回答

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 
+0

謝謝你的回答,這真的很有幫助 – Milad