保留和恢复的替代方法

时间:2018-06-16 13:05:07

标签: stata

有没有办法从do文件中有选择地执行几行代码 我使用preserve命令后没有Stata automatically restoring原始数据?

1 个答案:

答案 0 :(得分:2)

您可以使用preserve命令代替restoresnapshot

sysuse auto, clear
snapshot save, label("original dataset")

keep price mpg weight foreign
snapshot save, label("fewer variables")

regress price mpg weight foreign

collapse (mean) price mpg weight foreign
snapshot save, label("collapsed dataset")

snapshot list

snapshot restore 2
describe

snapshot erase _all

有关详细信息,请在Stata的命令提示符下键入help snapshot