DLL.version | R Documentation |
On MS Windows only, return the version of the package and the version of R used to build the DLL, if available.
DLL.version(path)
path |
character vector of length one giving the complete path to the DLL. |
If the DLL does not exist, NULL
.
A character vector of length two, giving the DLL version and the version of R used to build the DLL. If the information is not available, the corresponding string is empty.
This is only available on Windows.
if(.Platform$OS.type == "windows") withAutoprint({ DLL.version(file.path(R.home("bin"), "R.dll")) DLL.version(file.path(R.home(), "library/stats/libs", .Platform$r_arch, "stats.dll")) })
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.