print is a generic function for
printing its argument and returning it invisibly (via invisible(x)).
The function invokes particular methods which
depend on the class of the first argument.
The EnvStats function print.default simply calls the R
functions print or
print.default. The EnvStats functions print and print.default have been
created in order to comply with CRAN policies, because EnvStats contains a
modified version of the R function print.htest.
print(x, ...)
"print"(x, ...)print and
print.default for more information.
print and
print.default.
print.default simply calls the R
functions print or
print.default, depending on the class of the
argument x. The EnvStats functions print and print.default have been
created in order to comply with CRAN policies, because EnvStats contains a
modified version of the R function print.htest. When EnvStats
is loaded, objects of class "htest" will be printed using the
EnvStats version of print.htest.
See the help files for the R functions print and
print.default.
print,
R help file for print.default,
print.htest.