| requireversion {spatstat} | R Documentation |
Checks that the version number of a specified package is greater than or equal to the specified version number. For use in stand-alone R scripts.
requireversion(pkg, ver)
pkg |
Package name. |
ver |
Character string containing version number. |
This function checks whether the installed version of the
package pkg is greater than or equal to ver.
It is useful in stand-alone R scripts, which often require a particular version of a package in order to work correctly.
This function should not be used inside a package: for that purpose, the dependence on packages and versions should be specified in the package description file.
Null.
Adrian Baddeley Adrian.Baddeley@curtin.edu.au
## Not run:
requireversion(spatstat, "1.42-0")
## End(Not run)