Displaying 1 result from an estimated 1 matches for "coefsumtest".
2011 Mar 26
1
another import puzzle
Dear 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...