getValues | R Documentation |
Get all the values of a variable for some years Monte Carlo
getValues(data = NULL, variable = NULL, mcyear = "all")
data |
an object of class "antaresData" created with the function
|
variable |
a variable of data |
mcyear |
set of mcYear |
A data.table, data.frame class object containing the study's output data
library(antaresRead)
# with study test for example (study is in package antaresRead)
sourcedir <- system.file("testdata", package = "antaresRead")
# untar study in temp dir
path_latest <- file.path(tempdir(), "latest")
untar(file.path(sourcedir, "antares-test-study.tar.gz"), exdir = path_latest)
study_path <- file.path(path_latest, "test_case")
# set path to your Antares simulation
opts <- setSimulationPath(study_path)
# read output simulation
mydata <- readAntares(areas = "all",
links = "all",
clusters = "all",
timeStep = "annual",
mcYears = "all")
# get values of a variable
getValues(mydata$areas, variable="LIGNITE")
getValues(mydata$clusters, variable = "NODU")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.