我有以下代码:
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
我想添加一行以清除内存中的上一张图或将其重写。
我尝试过:图表_all。这行不通。图形不会清除。 我还尝试过在上面的代码后放置一个replace命令,如下所示:
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不能与replace一起使用。
还有其他建议吗?