compare_r_version: Compare current R version with a specified one

Description Usage Arguments Value See Also Examples

View source: R/compare_r_version.R

Description

Determine if R is older (return -1), or not (return 0 if equal, or 1 if newer) than a given version number.

Usage

1
2
3

Arguments

version

A string defining the version to compare to, like '2.0.0' or '1.9.1'.

Value

-1 if R is older, 0 if equal, 1 if newer. Take care: if you specify version as "2.11", and R is version "2.11.0", then the function will return 1 (newer)!

See Also

compareVersion(), R.version()

Examples

1
compare_r_version("2.11.0") # Note that we strongly advise to use R > 2.11.0!

svMisc documentation built on Oct. 12, 2021, 1:08 a.m.