https://github.com/cran/ebal
Raw File
Tip revision: bd421f99832cebe68e96c6bbe7dd72d79cc5873b authored by Jens Hainmueller on 27 July 2011, 00:00:00 UTC
version 0.1-1
Tip revision: bd421f9
zzz.r
.First.lib <-
function (libname, pkgname)
{
   date <- date()
   x <- regexpr("[0-9]{4}", date)
   this.year <- substr(date, x[1], x[1] + attr(x, "match.length") - 1)
   
   # echo output to screen
   cat("##\n## ebal Package: Implements Entropy Balancing.\n")
   cat("## See http://www.mit.edu/~jhainm/ for additional information.\n\n")
#library.dynam(pkgname, pkgname, lib.loc=libname)
}

back to top