1

我有以下代码:

graph drop _all
sts graph if year==2014, saving(14)
sts graph if year==2015, saving(15)
sts graph if year==2016, saving(16)

gr combine 14.gph 15.gph 16.gph

我想添加一条线来清除内存中的上一个图表或重写它。

我试过了:graph drop _all。这行不通。图表未清除。我还尝试在上面的代码之后放置一个替换命令,如下所示:

sts graph if year==2014, saving(14) replace
sts graph if year==2015, saving(15) replace
sts graph if year==2016, saving(16) replace

gr combine 14.gph 15.gph 16.gph

但是 sts 不适用于替换。

还有其他建议吗?

4

1 回答 1

2

从手册:

在此处输入图像描述

替换选项应该放在这对括号内。尝试这个:

sts graph if year==2014, saving(14, replace) 
sts graph if year==2015, saving(15, replace)
sts graph if year==2016, saving(16, replace)
于 2018-08-03T14:52:32.950 回答