Thanks to visit codestin.com
Credit goes to github.com

Skip to content
/ gdxdt Public

❗ This is a read-only mirror of the CRAN R package repository. gdxdt — IO for GAMS GDX Files using 'data.table'

License

Notifications You must be signed in to change notification settings

cran/gdxdt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gdxdt

Read/Write utilities for GAMS gdx files. Using R's data.table.

Requires GAMS gdxrrw library downloadable from the GAMS wiki.

Install

require(devtools)
install_github("loisel/gdxdt")

gdxdt depends on the gdxrrw library. To use this library you have to set the gams library path via igdx.

Usage

Read parameter, variable or set with symbol name:

dt <- readgdx("filename.gdx", "name")

Read upper bound field of variable, field="l" is the default:

dt <- readgdx("filename.gdx", "variable", field="up")

Write parameter:

dt <- data.table(
	col1=c("a", "b", "c"),
	col2=c("d", "e", "f"))
dt[, value:=runif(1), by="col1"]

writegdx.parameter("test.gdx", dt,
	name="test",
	valcol = "value",
	uelcols = c("col1", "col2"))

Write variable:

dt <- data.table(
	col1=c("a", "b", "c"),
	col2=c("d", "e", "f"))
dt[, value:=runif(1), by="col1"]

writegdx.variable("test.gdx", dt,
	name="test",
	valcol = "value",
	uelcols = c("col1", "col2"),
	field="l")

About

❗ This is a read-only mirror of the CRAN R package repository. gdxdt — IO for GAMS GDX Files using 'data.table'

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages