| editArea | R Documentation | 
Edit an existing area in an Antares study.
editArea(
  name,
  color = NULL,
  localization = NULL,
  nodalOptimization = NULL,
  filtering = NULL,
  adequacy = NULL,
  opts = antaresRead::simOptions()
)
| name | Name of the area as a character, without punctuation except - and _. | 
| color | Color of the node | 
| localization | Localization on the map | 
| nodalOptimization | Nodal optimization parameters, see  | 
| filtering | Filtering parameters, see  | 
| adequacy | Adequacy parameters, see  | 
| opts | List of simulation parameters returned by the function
 | 
An updated list containing various information about the simulation.
createArea(), removeArea()
## Not run: 
library(antaresRead)
# Set simulation path
setSimulationPath(path = "PATH/TO/SIMULATION", simulation = "input")
# Edit an existing area
editArea("area", color = grDevices::rgb(230, 108, 44, max = 255),
  localization = c(1, 1),
  opts = antaresRead::simOptions()) 
editArea("de",  nodalOptimization = list("spilledenergycost" = list(fr = 30)),
opts = antaresRead::simOptions())
editArea("de",  nodalOptimization = nodalOptimizationOptions(),
opts = antaresRead::simOptions())
editArea(
  "de",
  filtering = list("filter_synthesis"=paste(c("hourly","daily"),collapse = ", "))
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.