首页 > 软件 > 如何用stata生成新变量,若公司i在第t年披露研发支出信息,则虚拟变量R&D_Open取值为1,否

如何用stata生成新变量,若公司i在第t年披露研发支出信息,则虚拟变量R&D_Open取值为1,否

软件 2022-07-01

如何用STATA生成虚拟变量

如果ros变量本身是定类或定序变量,直接用 ta ros, gen(ros) 就可以产生虚拟变量,变量名称为ros_1 ros_2 ros_3 等等 按照你的要求,如果ros变量没有不回答就是“.”的话,应该是 gen rosneg=. replace rosneg=1 if ros<0 replace rosneg=0 if ros>=0 如果ros=.,就要看你的处理,是不是将缺省值去掉 就是replace rosneg=0 if ros>=0&ros<. 看了一下时间好像明天就考试了诶,祝顺利

怎么用stata根据年份定义虚拟变量

如果ros变量本身是定类或定序变量,直接用 ta ros, gen(ros) 就可以产生虚拟变量,变量名称为ros_1 ros_2 ros_3 等等 按照你的要求,如果ros变量没有不回答就是“.”的话,应该是 gen rosneg=. replace rosneg=1 if ros<0 replace rosneg=0 if ros>=0 如果ros=.,就要看你的处理,是不是将缺省值去掉 就是replace rosneg=0 if ros>=0&ros<. 看了一下时间好像明天就考试了诶,祝顺利

关于stata的虚拟变量,求解答,关乎毕业

比如你的变量叫做REG1,针对2010年。你同时还有一个变量叫YEAR,里面是每一个变量对应的年数。那么用以下命令,你能生成一个新的变量,只有当 对应的YEAR变量为你想要的2010年时,数值取值为1,其他的都取值为0 : gen REG1 = (YEAR==2010)。 还有一种方法更加方便,就是用TABULATE命令。如果你的变量YEAR非常的规则,比如1990-2010年。共有21个年份。没有其他的比如小数、无理数之类的乱七八糟的数。那么 tabulate YEAR, gen(REG)会直接生成21个变量,REG1,REG2,.REG21。REG1就是当YEAR =1990时取值为1,其

stata中如何定义虚拟变量

1、用list make weight 显示数据。

2、尝试执行 gen weight=weight/1000,系统提示变量已存在。

3、如果foreign==0,将price提高5%,如果foreign==1,将price提高10%。 gen predprice=1.05*price if foreign==0 和replace predprice=1.1*price if foreign==1 再显示结果list make foreign price predprice。

4、list中nolabel参数的使用。list make foreign price predprice,nobel。

5、gen where ="D" if foreign=="Domestic":origin replace where ="F" if foreign=="Foreign":origin如果foreign的值为domestic则where的值为D,否则where的值为F。

stata怎样定义虚拟变量?

1、用list make weight 显示数据。

2、尝试执行 gen weight=weight/1000,系统提示变量已存在。

3、如果foreign==0,将price提高5%,如果foreign==1,将price提高10%。 gen predprice=1.05*price if foreign==0 和replace predprice=1.1*price if foreign==1 再显示结果list make foreign price predprice。

4、list中nolabel参数的使用。list make foreign price predprice,nobel。

5、gen where ="D" if foreign=="Domestic":origin replace where ="F" if foreign=="Foreign":origin如果foreign的值为domestic则where的值为D,否则where的值为F。


标签:编程 编程语言 未分类 stata 虚拟变量

大明白知识网 Copyright © 2020-2022 www.wangpan131.com. Some Rights Reserved. 京ICP备11019930号-18