xtbhst implements the bootstrap slope heterogeneity test
for panel data based on Blomquist and Westerlund (2015). The test
examines whether slope coefficients are homogeneous across
cross-sectional units.
Reference: Blomquist, J., & Westerlund, J. (2015). Panel bootstrap tests of slope homogeneity. Empirical Economics, 48(1), 1191-1204. doi:10.1007/s00181-015-0978-z
# Install from CRAN (when available)
install.packages("xtbhst")
# Or install development version from GitHub
# install.packages("devtools")library(xtbhst)
# Generate panel data with homogeneous slopes
set.seed(123)
N <- 20 # cross-sectional units
T <- 30 # time periods
data <- data.frame(
id = rep(1:N, each = T),
time = rep(1:T, N),
x = rnorm(N * T)
)
data$y <- 1 + 0.5 * data$x + rnorm(N * T)
# Test for slope heterogeneity
result <- xtbhst(y ~ x, data = data, id = "id", time = "time",
reps = 999, seed = 42)
print(result)Output:
Bootstrap test for slope heterogeneity
(Blomquist & Westerlund, 2015. Empirical Economics)
H0: slope coefficients are homogeneous
---------------------------------------------
Delta BS p-value
-1.2345 0.8900
adj. -1.3456 0.8700
---------------------------------------------
Bootstrap replications: 999
Block length: 6
Panel: N = 20 , T = 30 , K = 1
# Partial out control variables
data$z <- rnorm(N * T)
result <- xtbhst(y ~ x, data = data, id = "id", time = "time",
partial = ~ z, reps = 999)# Include cross-sectional averages (Pesaran, 2006)
result <- xtbhst(y ~ x, data = data, id = "id", time = "time",
csa = ~ x, csa_lags = 2, reps = 999)# Plot bootstrap distributions
plot(result)
# Plot all diagnostics including individual slopes
plot(result, which = 1:4)If the p-value is small (e.g., < 0.05), reject H0 and conclude there is evidence of slope heterogeneity. This suggests that pooled OLS or standard fixed effects estimators may be inappropriate, and heterogeneous coefficient models (e.g., mean group estimator) should be considered.
If you use this package, please cite:
Blomquist, J., & Westerlund, J. (2015). Panel bootstrap tests of slope
homogeneity. Empirical Economics, 48(1), 1191-1204.
https://doi.org/10.1007/s00181-015-0978-z
GPL (>= 3)
R port based on the Stata implementation xtbhst, which
was modified from xthst by Tore Bersvendsen and Jan
Ditzen.