install.OpenMx {umx} | R Documentation |
Install OpenMx, with choice of builds
Description
You can install OpenMx, including the latest NPSOL-enabled build of OpenMx. Options are:
"NPSOL": Install from our repository (default): This is where we maintain binaries supporting parallel processing and NPSOL.
"travis": Install the latest travis built (MacOS only).
"CRAN": Install from CRAN.
"open travis build page": Open the list of travis builds in a browser window.
Usage
install.OpenMx(
loc = c("NPSOL", "travis", "CRAN", "open travis build page", "UVa"),
url = NULL,
lib,
repos = getOption("repos")
)
Arguments
loc |
Version to get default is "NPSOL". "travis" (latest build),CRAN, list of builds. |
url |
Custom URL. On Mac, set this to "Finder" and the package selected in the Finder will be installed. |
lib |
Where to install the package. |
repos |
Which repository to use (ignored currently). |
Value
None
References
See Also
Other Miscellaneous Utility Functions:
libs()
,
qm()
,
umxLav2RAM()
,
umxModelNames()
,
umxRAM2Lav()
,
umxVersion()
,
umx_array_shift()
,
umx_find_object()
,
umx_lower.tri()
,
umx_msg()
,
umx_open_CRAN_page()
,
umx_pad()
,
umx_print()
,
umx
Examples
## Not run:
install.OpenMx() # gets the NPSOL version
install.OpenMx("NPSOL") # gets the NPSOL version explicitly
install.OpenMx("CRAN") # Get the latest CRAN version
install.OpenMx("open travis build page") # Open web page of travis builds
## End(Not run)