Deprecated {base} | R Documentation |
These functions are provided for compatibility with older versions of R only, and may be defunct as soon as of the next release.
.Deprecated(new) print.coefmat(x, digits=max(3, getOption("digits") - 2), signif.stars = getOption("show.signif.stars"), dig.tst = max(1, min(5, digits - 1)), cs.ind = 1:k, tst.ind = k + 1, zap.ind = integer(0), P.values = NULL, has.Pvalue = nc >= 4 && substr(colnames(x)[nc],1,3) == "Pr(", eps.Pvalue = .Machine$double.eps, na.print = "", ...) codes(x, ...) codes(x, ...) <- value anovalist.lm(object, ..., test = NULL) lm.fit.null(x, y, method = "qr", tol = 1e-07, ...) lm.wfit.null(x, y, w, method = "qr", tol = 1e-07, ...) glm.fit.null(x, y, weights = rep(1, nobs), start = NULL, etastart = NULL, mustart = NULL, offset = rep(0, nobs), family = gaussian(), control = glm.control(), intercept = FALSE) print.atomic(x, quote = TRUE, ...)
.Deprecated("<new name>")
is called from deprecated
functions. The original help page for these functions is often
available at help("oldName-deprecated")
(note the quotes).
tkfilefind
is a demo in package tcltk displaying a
widget for selecting files but the same functionality is available in
a better form in the tkgetOpenFile
and tkgetSaveFile
functions. The demo is reported not even to work with recent versions
of Tcl and Tk libraries.
print.coefmat
is an older name for printCoefmat
with a different default for na.print
.
codes
was almost always used inappropriately. To get the
internal coding of a factor, use unclass
, as.vector
or
as.integer
. For ordered factors, codes
was
equivalent to these, but for unordered factors it assumed an
an alphabetical ordering of the levels in the locale in use.
anovalist.lm
was replaced by anova.lmlist
in
R 1.2.0.
lm.fit.null
and lm.wfit.null
are superseded by
lm.fit
and lm.wfit
which handle null models now.
Similarly, glm.fit.null
is superseded by glm.fit
.
print.atomic
differs from print.default
only in its
argument sequence. It is not a method for print
.