checkRVersion {gtools}R Documentation

Check if a newer version of R is available

Description

Check if a newer version of R is available

Usage

checkRVersion(quiet = FALSE)

Arguments

quiet

Logical indicating whether printed output should be suppressed.

Details

This function accesses the R web site to discover the latest released version of R. It then compares this version to the running version. If the running version is the same as the latest version, it prints the message, "The latest version of R is installed:" followed by the version number, and returns NULL. If the running version is older than the current version, it displays the message, "A newer version of R is now available:" followed by the corresponding version number, and returns the version number.

If quiet=TRUE, no printing is performed.

Value

Either the version number of the latest version of R, if the running version is less than the latest version, or NULL.

Note

This function uses the internet to access the R project web site. If internet access is unavailable or the R project web site is down, the function will fail.

Author(s)

Gregory R. Warnes

See Also

R.Version

Examples


try(
   ver <- checkRVersion()
)
print(ver)

[Package gtools version 3.9.5 Index]