我想运行块引导程序,其中块是国家,并包括国家指标变量。我认为以下内容会起作用。
regress mvalue kstock i.country, vce(bootstrap, cluster(country))
但我收到以下错误。
. regress mvalue kstock i.country, vce(bootstrap, cluster(country))
(running regress on estimation sample)
Bootstrap replications (50)
----+--- 1 ---+--- 2 ---+--- 3 ---+--- 4 ---+--- 5
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.xxxxx 50
insufficient observations to compute bootstrap standard errors
no results will be saved
r(2000);
看来这应该可行。如果块引导程序为每个块选择相同的国家,那么它似乎应该放弃拦截。
我的错误编码还是概念性的?这是一些使用grunfeld
数据的代码。
webuse grunfeld, clear
xtset, clear
generate country = int((company - 1) / 2) + 1
regress mvalue kstock i.country, vce(bootstrap, cluster(country))