我似乎无法找到改变Stata中个别值的方法。假如我有一个名为height
的变量,它有20个观察值,我可以
dis height[20] /*displays the 20th observation of height*/
我怎么能同样改变说第20次观察?
答案 0 :(得分:0)
您可以使用数据编辑器。否则,命令行语法为replace
... in
#。请参阅help
replace
。如果您保留log
,则会将任何类型的更改记录为replace
语句。
clear
set obs 10
gen y = _n
replace y = 42 in 7