gamstransfer
is a data interface to efficiently transfer
data between GAMS and R.
To install the latest version of gamstransfer
from CRAN,
use the following command.
install.packages("gamstransfer")
To use gamstransfer
, load the package using
library(gamstransfer)
. Following is the code snippet to
read data from a GDX file named foo.gdx
.
library(gamstransfer)
= Container$new("foo.gdx") m
gamstransfer depends on the following R packages:
To build this package from source, the following libraries must be installed:
It is recommended that the users install released versions of
gamstransfer
using
::install_github("GAMS-dev/transfer-r/gamstransfer@vX.Y.Z") remotes
All the package dependencies can be installed at once using the
install.packages
command.
install.packages(c("R6", "collections", "Rcpp", "R.utils"))
Installation from the development version is similar to installation
from the source. To install the development version, users need to point
the installer to the zlib
library dependency. There are a
couple ways to do it.
zlib
to your system environment variable
PATH
. This is the easier and the recommended way. One can
then install gamstransfer
using the following command.::install_github("GAMS-dev/transfer-r/gamstransfer") remotes
zlib
using
configure.vars
argument. An example is shown below.::install_github("GAMS-dev/transfer-r/gamstransfer@vX.Y.Z",
remotesconfigure.vars=c("INCLUDE_DIR='[path_to_include]' LIB_DIR='[path_to_bin]'"))
or
::install_github("GAMS-dev/transfer-r/gamstransfer@vX.Y.Z",
remotesconfigure.vars=c("LIB_DIR='[path_to_shared_object]'"))
LIB_DIR
and INCLUDE_DIR
permanently in the .Renviron file.A quick and easy way to build gamstransfer
source
package is by running R CMD build .
from the package
directory. This will generate the package source file. To build a binary
package, run R CMD INSTALL . --build
from the package
directory. This command builds a binary package along with
installation.
You can install the package from the command line or from the R console.
To install gamstransfer
from command line using a binary
package, run the following command.
R CMD INSTALL [binary_file_name]
To install gamstransfer
from R console using a binary
package, run the following command.
install.packages("[binary_file_name]", type="binary" )
To install gamstransfer
from command line using a source
package, run the following command.
R CMD INSTALL [source_file_name]
To install gamstransfer
from R console using a source
package, run the following command.
install.packages("[source_file_name]")
Note that installing from source requires zlib
. Please
refer to “installing the development version from GitHub” section in
this file.
You can view the detailed documentation for gamstransfer
here.
We would love to get feedback on gamstransfer
. Please
direct your questions to
support@gams.com