I have run 3 regressions with rdrobust, and would like to print some of the values (not all of them in a table, so that each model has a column and the results can be compared side by side.
I tried with stargazer but with no success, same thing goes for modelsummary.
This is what my regression code looks like:
model <- rdrobust::rdrobust(x,
y,
c = cutoffvalue,
kernel = "tri", #default
bwselect = "mserd"
And I'd like to show only the regression estimate, values, bandwidth and kernel in the table.
This is what I tried, but it doesn't give me the values that I want, and also i'ts for one model only. I'd like to have all 3 in the same table.
tidy.rdrobust <- function(model, ...){
ret <- data.frame(term = row.names(model$coef),
estimate = model$coef[, 1],
std.error = model$se[, 1],
p.value = model$pv[, 1])
row.names(ret) <- NULL
ret
}
glance.rdrobust <- function(model, ...){
ret <- data.frame(nobs.left = model$N[1],
kernel = model$kernel,
bwselect = model$bwselect)
ret
}
x <- runif(1000, -1, 1)
y <- 5 + 3 * x + 2 * (x >= 0) + rnorm(1000)
fit <- rdrobust(y, x)
modelsummary(fit)
thanks!
I asked for clarification in a comment, but here is my best attempt at guessing what you want in the table:
To achieve this, I only modified your
glance.rdrobust
method, and I used thestatistic
argument of themodelsummary
function.Load libraries and define custom
tidy
andglance
methods to extract information (see documentation) fromrdrobust
objects:Simulate data, estimate 3 models, and store them in a list:
Create a table: