-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 211a263
Showing
115 changed files
with
25,139 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# binaries | ||
*.[oa] | ||
*.la | ||
*.lo | ||
*.so | ||
*.so.* | ||
*.d | ||
# package files | ||
*.tar.gz | ||
*.build | ||
*.Rcheck | ||
# emacs backup | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Package: lfe | ||
Version: 2.7 | ||
Date: 2018-06-23 | ||
Title: Linear Group Fixed Effects | ||
Author: Simen Gaure, Ragnar Frisch Centre for Economic Research | ||
Maintainer: Simen Gaure <[email protected]> | ||
Copyright: 2011-{year}, Simen Gaure | ||
Depends: R (>= 2.15.2), Matrix (>= 1.1-2) | ||
Imports: Formula, xtable, compiler, utils, methods, sandwich, parallel | ||
Suggests: knitr, digest, igraph, plm, cubature(>= 1.3-1), numDeriv, data.table | ||
VignetteBuilder: knitr | ||
ByteCompile: yes | ||
Description: Transforms away factors with many levels prior to doing an OLS. | ||
Useful for estimating linear models with multiple group fixed effects, and for | ||
estimating linear models which uses factors with many levels as pure control variables. | ||
Includes support for instrumental variables, conditional F statistics for weak instruments, | ||
robust and multi-way clustered standard errors, as well as limited mobility bias correction. | ||
License: Artistic-2.0 | ||
Classification/JEL: C13, C23, C60 | ||
Classification/MSC: 62J05, 65F10, 65F50 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
S3method(coef,felm) | ||
S3method(estfun,felm) | ||
S3method(model.frame,felm) | ||
S3method(model.matrix,felm) | ||
S3method(print,felm) | ||
S3method(print,summary.felm) | ||
S3method(residuals,felm) | ||
S3method(summary,felm) | ||
S3method(update,felm) | ||
S3method(vcov,felm) | ||
S3method(weights,felm) | ||
S3method(xtable,felm) | ||
S3method(xtable,summary.felm) | ||
export(..oldfelm) | ||
export(bccorr) | ||
export(btrap) | ||
export(cgsolve) | ||
export(chainsubset) | ||
export(compfactor) | ||
export(condfstat) | ||
export(demeanlist) | ||
export(efactory) | ||
export(felm) | ||
export(fevcov) | ||
export(getfe) | ||
export(is.estimable) | ||
export(kaczmarz) | ||
export(makeDmatrix) | ||
export(mctrace) | ||
export(nlexpect) | ||
export(varvars) | ||
export(waldtest) | ||
import('stats') | ||
import(Formula) | ||
importClassesFrom(Matrix,sparseMatrix) | ||
importFrom(Matrix,Cholesky) | ||
importFrom(Matrix,Diagonal) | ||
importFrom(Matrix,crossprod) | ||
importFrom(Matrix,diag) | ||
importFrom(Matrix,nnzero) | ||
importFrom(Matrix,rankMatrix) | ||
importFrom(Matrix,t) | ||
importFrom(Matrix,tcrossprod) | ||
importFrom(methods,as) | ||
importFrom(sandwich,estfun) | ||
importFrom(xtable,xtable) | ||
useDynLib(lfe, .registration=TRUE, .fixes='C_') |
Oops, something went wrong.