结果:找到“variable M not found”相关内容54个,排序为按回复时间降序,搜索更多相关帖子请点击“高级”
熵权法代码
1 个回复 - 378 次查看
熵值法代码,直接粘贴使用
global positive_var 正指标
global negative_var 负指标
global all_var $positive_var $negative_var
foreach i in $positive_var {
qui sum `i'
gen x_`i'=(`i'-r(min)) ...
2023-7-23 16:07 - aaa12123 - 现金交易版
多项内生转换模型MESR
11 个回复 - 2705 次查看
多项内生转换模型
MESR
[*]因个人研究需要,学习了内生转换模型ESR和多项内生转换模型
MESR并进行了论文撰写,并已公开发表。因为该方法在国内暂时还不普及,能搜寻到的数据和资料也相对较少,主要根据3篇国外参考 ...
2023-2-20 07:41 - 非此或彼 - 现金交易版
egen group报错variable __000001 not found r(111)
5 个回复 - 11887 次查看
_pctile sat, percentile(1 99)
_pctile math, percentile(1 99)
_pctile english, percentile(1 99)
_pctile grades, percentile(1 99)
global m "sat math english grades"
foreach v in $m{
drop if `v'
2015-6-4 11:44 - 天斯吾下 - Stata专版
事件研究法出现:variable ret not found
7 个回复 - 4890 次查看
gen predicted_return=.
forvalues i=1(1)2324{
l id stkcd if id==`i' & dif==0
reg ret market_ret if id==`i' & estimation_window==1
predict p if id==`i'
replace predicted_return = p if id==`i' ...
2018-6-23 18:51 - 万万515 - Stata专版
stata运行时显示variable __000001 not found
3 个回复 - 5002 次查看
代码如下
clear all
capture mkdir D:\360
MoveData\Users\Desktop
cd D:\360
MoveData\Users\Desktop
use D:/360
MoveData/Users/Desktop/eventdates.dta, clear
joinby company_id using stockdata.dta
*For nu ...
2020-10-5 11:31 - berrypudd - Stata专版
事件研究法出现:variable ret not found
1 个回复 - 1404 次查看
gen predicted_return=./*用于存放正常回报率的变量*/
egen id = group(code)/*重新定义公司代码为1,2,3……,便于执行循环程序*/
sum id
local N=r(max)/*记录公司数目*/
forvalues i=1(1)246{
l id code ...
2019-5-16 19:01 - jingmoruyan - Stata专版
求助~~:ERROR: Variable PRE not found.
3 个回复 - 5220 次查看
data cashd;
set sasuser.cashd;
pre=LAG(p6);
run;
proc autoreg data=sasuser.cashd;
model p6=pre/lagdep=pre;
run;
这是我的语句~~~可是老提示~~ERROR: Variable PRE
not found.附件有图~~~
2011-5-22 21:37 - hawkblue - SAS专版
Variable YEAR not found
7 个回复 - 7313 次查看
data pro;
input year 1-2 prod 3-7 @;
title '某厂1984-1990年度产值的曲线图';
cards;
84 24334 85 32424 86 34234 87 24345 88 24343 89 34353 90 23123;
proc sort; by year;
run;
显示:
ERROR: No ...
2012-12-13 11:44 - nongyanhua - SAS专版