作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的数据中包含字符串变量,其中包含分数和非整数。
例如:
3 2/3
8 1/2
1.65
6 1/4
0.235
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/
我是一名优秀的程序员,十分优秀!