Skip to content

Commit

Permalink
initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
sgaure committed Jun 24, 2018
0 parents commit 211a263
Show file tree
Hide file tree
Showing 115 changed files with 25,139 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
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
*~
20 changes: 20 additions & 0 deletions DESCRIPTION
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
49 changes: 49 additions & 0 deletions NAMESPACE
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_')
Loading

0 comments on commit 211a263

Please sign in to comment.