Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Stata 中有两个变量,两个数字变量都以某种方式被记录为字符串变量。我需要将它们转换为数值变量,以便我可以用它们生成一个新变量。
当我尝试时,它说type mismatch我已经尝试了real和encode命令,但没有一个有效。
type mismatch
real
encode
destring var, replace如果要转换var为数字,请在 Stata 中尝试
destring var, replace
var
或者,
encode var, generate(var1)