Displaying 1 result from an estimated 1 matches for "coeftab".
Did you mean:
  coefmat
  
2011 Mar 26
1
another import puzzle
...r list,
  I have another (again possibly boneheaded) puzzle about importing,
again encapsulated in a nearly trivial package.  (The package is posted
at <http://www.math.mcmaster.ca/bolker/misc/coefsumtest_0.001.tar.gz>.)
  The package consists (only) of the following S3 method definitions:
coeftab <- function(object, ...) UseMethod("coeftab",object)
coeftab.default <- function(object,...) {
  print(class(summary(object)))
  coef(summary(object))
}
  The NAMESPACE tries to pull in the necessary bits and pieces from lme4
to extract summaries and coefficients:
export("coe...