gpt4 book ai didi

stata - 用分数对变量进行解串

转载 作者:行者123 更新时间:2023-12-01 10:26:34 27 4
gpt4 key购买 nike

我的数据中包含字符串变量,其中包含分数和非整数。

例如:

3 2/3 
8 1/2
1.65
6 1/4
0.235

Stata无法使用 destring命令对这些变量进行解串。

有什么办法可以将字符串变量转换为数字,以便将其用于分析?

最佳答案

下面的代码在扩展到“3 2/3”或“-6 1/4”(注意空格)的情况下,可能对于保存某些类型也很有用。

replace var1 = subinstr(var1, "- ", "-",.)
split var1, generate(x) destring force

egen y = ends(var1) if strmatch(var1,"*/*"), last
split y, destring force p("/")

replace x1 = cond(x1<0, x1-y1/y2, cond(x1!=.,x1+y1/y2, y1/y2)) if y1!=.
keep var1 x1

关于stata - 用分数对变量进行解串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53429401/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com