从 Stata 16 开始不支持 meqrlogit
No support for meqrlogit as of Stata 16
我查看了 Stata 16 中 meqrlogit
的帮助文件,它不再是 Stata 16 的一部分。找到的替代方法是在 melogit
中使用集成方法 pcaghermite
但是当我使用此方法时出现错误 method pcaghermite not recognized
.
meqrlogit
仍然有效,但不再是 'official' stata 的一部分(参见 help meqrlogit
)
melogit
是推荐的替代品。
下面的例子实现了集成方法pcaghermite
:
webuse bangladesh
melogit c_use i.urban age child* || district: i.urban, ///
cov(unstruct) intmethod(pcaghermite)
编辑 因为这里更新的问题是 the answer on Statalist:
中提出的更新检查
// Check your update status
quietly query update
foreach component in exe ado utilities docs {
assert r(inst_`component') == r(avbl_`component')
}
我查看了 Stata 16 中 meqrlogit
的帮助文件,它不再是 Stata 16 的一部分。找到的替代方法是在 melogit
中使用集成方法 pcaghermite
但是当我使用此方法时出现错误 method pcaghermite not recognized
.
meqrlogit
仍然有效,但不再是 'official' stata 的一部分(参见 help meqrlogit
)
melogit
是推荐的替代品。
下面的例子实现了集成方法pcaghermite
:
webuse bangladesh
melogit c_use i.urban age child* || district: i.urban, ///
cov(unstruct) intmethod(pcaghermite)
编辑 因为这里更新的问题是 the answer on Statalist:
中提出的更新检查// Check your update status
quietly query update
foreach component in exe ado utilities docs {
assert r(inst_`component') == r(avbl_`component')
}