plotXY: Plot density between X et Y with ggplot2 and plotly

View source: R/plot_XY.R

plotXYR Documentation

Plot density between X et Y with ggplot2 and plotly

Description

Plot density between X et Y with ggplot2 and plotly

Usage

plotXY(
  data,
  x,
  y,
  precision = 30,
  sizeOnCount = FALSE,
  outLine = TRUE,
  transform = NULL
)

Arguments

data

data.frame can be antaresData object

x

character, x variable

y

character, y variable

precision

Deprecated.

sizeOnCount

Deprecated.

outLine

Deprecated.

transform

Deprecated.

Examples

## Not run: 

setSimulationPath("myStudy")
myData <- readAntares()

plotXY(myData, "NODU", "LOAD", precision = 50,
         sizeOnCount = FALSE)
         
myData <- readAntares(areas = "all", links = "all")    
myData <- mergeAllAntaresData(myData)  
plotXY(myData, "OP. COST_max_b", "OP. COST_max_c", precision = 50,
         sizeOnCount = FALSE)
         
         

## End(Not run)
   

rte-antares-rpackage/antaresViz documentation built on Oct. 18, 2023, 2:04 p.m.