reg.combs: Reg Combs

View source: R/regcombs.R

reg.combsR Documentation

Reg Combs

Description

This function allows you to perform regression combinations.

Usage

reg.combs(fmla, data, reg.fn = ~felm, reg.params = ~0, fe = ~0,
  iv = ~0, cl = ~0, w = ~0, omit.stat = c("f", "ser"),
  n.cores = 1, model.summaries = TRUE, test = FALSE, ...)

Arguments

fmla

a formula

data

data

Examples

reg.combs(a1 + a2 ~ b1 + b2 + (b1 + b2) | c1 + (c1 + c2),
         fe = ~ (f1 + f2),
         iv = ~
           (e1 | e2 ~ i1 + i2) +
           (e3 | e4 ~ i3 + i4),
         cl = ~ cl1 + cl2,
         w = ~ w1 + w2,
         data = dt[1] + dt[2] ~ .,
         reg.fn = ~ felm + logit,
         test = TRUE)

rbelo/regcombs documentation built on March 27, 2024, 4:16 p.m.