我想绘制两个变量之间的交互作用。
margins SentiSat_Rounded#PriceReduction
我收到以下错误:
'SentiSat_Rounded' not found in list of covariates
r(322);
变量存在于数据集中。此外,如果数据集中不存在变量,则会引发不同的错误,例如
variable X not found
您能否建议未出现在协变量列表中是什么意思?
为了找到协变量,我遇到了这段代码:program covars, rclass version 8
capture local Covars : colnames e(b)
if _rc error 301
tempname b
mat `b' = e(b)
tokenize `Covars'
local k = 0
forval j = 1/`= colsof(`b')' {
if "``j''" != "_cons" & `b'[1,`j'] != 0 {
local covars "`covars'``j'' "
local ++k
}
}
if `k' {
di as txt "{p}`covars'{p_end}"
return local covars "`covars'"
c_local covars "`covars'"
}
end
我跑了
covars
之后..在协变量列表中,未列出上述变量..该协变量列表与我的数据集中的变量不同吗?Stata 如何确定什么是协变量?