Learn R Programming

soiltexture (version 1.2.19)

soiltextureInfo: Display and / or export system and package version information

Description

Display and / or export system and package version information. Can be used to provide an overview of the system and the R packages that were used to produce some calculations, thus improving the traceability of that work in the long run.

Usage

soiltextureInfo(file = NULL, verbose = TRUE, depends = FALSE, 

    md5 = TRUE, packages = "soiltexture")

Arguments

file
Single character string. Name of the text file (with or without its path) in which the information will be exported. If NULL (default), information are not exported.
verbose
Single logical value. If TRUE, information are displayed on the screen.
depends
Single logical value. If TRUE, information on packages dependencies are also displayed, in the same way
md5
Single logical value. If TRUE, the package MD5 checksums are returned too
packages
Single character string. Name of the package whose information must be returned.

Value

  • Invisibly returns the information as a vector of character strings

See Also

The base functions that were used internally to compile the information: Sys.time, Sys.info, version, .packages, installed.packages, package_dependencies. See also the MD5 file in each package directory (and md5sum for generating these MD5 checksums).

Examples

Run this code
library( "soiltexture" )



#   Temporary file where the info will be exported:

f <- tempfile() 



#   Generate package information

soiltextureInfo( file = f, depends = TRUE, verbose = FALSE )



#   Read again the info (as for verbose = TRUE)

cat( readLines( f ), sep = "" ) 

unlink( f )



#   Also works with other packages

soiltextureInfo( packages = "sp" )

Run the code above in your browser using DataLab