ID EN
Miscellaneous

base-defunct

R Base 3.6.2

The functions or variables listed here are no longer part of R as they are no longer needed.

Syntax

R
# Defunct in 1.x
Version()
provide(package)
.Provided
category(…)
print.anova.glm(.)
print.anova.lm(.)
print.tabular(.)
print.plot(.)
save.plot(.)
system.test(.)
getenv(…)
read.table.url(url, method, …)
scan.url(url, file = tempfile(), method, …)
source.url(url, file = tempfile(), method, …)
httpclient(url, port = 80, error.is.fatal = TRUE,
           check.MIME.type = TRUE, file = tempfile(),
           drop.ctrl.z = TRUE)
parse.dcf(text = NULL, file = "", fields = NULL,
          versionfix = FALSE)
.Alias(expr)
print.ordered(.)
.Dyn.libs
.lib.loc
machine()
Machine()
Platform()
restart()
printNoClass(x, digits = NULL, quote = TRUE, na.print = NULL,
             print.gap = NULL, right = FALSE, …)
codes(x, …)
codes(x, &#8230;) &lt;- value<p></p><p># Defunct in 2.0.0
La.eigen(x, symmetric, only.values = FALSE,
         method = c("dsyevr", "dsyev"))
tetragamma(x)
pentagamma(x)
package.description(pkg, lib.loc = NULL, fields = NULL)</p><p># Defunct in 2.2.0
loadURL(url, envir = parent.frame(), quiet = TRUE, &#8230;)
delay(x, env = .GlobalEnv)</p><p># Defunct in 2.3.0
format.char(x, width = NULL, flag = "-")</p><p># Defunct in 2.4.0
La.chol(x)
La.chol2inv(x, size = ncol(x))</p><p># Defunct in 2.4.0
symbol.C(name)
symbol.For(name)</p><p># Defunct in 2.5.0
unix(call, intern = FALSE)</p><p># Defunct in 2.8.0
gammaCody(x)</p><p># Defunct in 2.9.0
manglePackageName(pkgName, pkgVersion)</p><p># Defunct in 2.13.0
.Import(...)
.ImportFrom(name, ...)
.Export(...)
.S3method(generic, class, method)</p><p># Defunct in 2.14.0
.First.lib(lib, pkg)</p><p># Defunct in 2.15.0
mem.limits(nsize = NA, vsize = NA)
.saveRDS(&#8230;)
.readRDS(&#8230;)
Sys.putenv(&#8230;)</p><p># Defunct in 3.0.0
real(length = 0)
as.real(x, &#8230;)
is.real(x)</p><p># Defunct in 3.1.0
.find.package(&#8230;)
.path.package(&#8230;)</p>

Details

Some of these have stubs which report that they are defunct, but most have been removed completely (apart from being documented here). category has been an old-S function before there were factors; should be replaced by factor throughout! The new function dev.print() should now be used for saving plots to a file or printing them. provide and its object .Provided have been removed. Their intended purpose was to allow one package to subsume another, but this was never used. getenv has been replaced by Sys.getenv. *.url are replaced by calling read.table, scan or source on a url connection. httpclient was used by the deprecated "socket" method of download.file. parse.dcf has been replaced by read.dcf, which is much faster, but has a slightly different interface. .Alias provided an unreliable

See Also

Defunct base-deprecated