Skip to contents

plot.limnigraph() plots S3 limnigraph objects with call to a lower level plot facility. It enables a compound view of limnigraph stats.

Usage

# S3 method for class 'limnigraph'
plot(x, path = NULL, file_name = NULL, screen_nav = NULL, ...)

Arguments

x

an object of class limnigraph

path

path for saving the result. Default to NULL, nothing is saved, graph is displayed

file_name

name of the elementary component processed. Default to NULL, no title

screen_nav

integer, managing screens for plot_mosaic()

...

some extra parameters (unused)

Value

A message to retrieve the file used to save the plot, if any.

Details

This is a new method for the plot function. It can be used to display graphs or save graphs in different formats (.png and .pdf). The .png is in a lower resolution than .pdf but is much lighter.

Examples


limnigraph = generate_limnigraph(
   model = adu_t,
  time = c(0, 300, 900),
  depth = cbind(facade_1 = c(0, 2, 0)),
  exposition = list(
    facade_1 = list(external =c("wall_A", "wall_B", "wall_C", "wall_D"))
  )
)
#> generating limnigraph ...
#>  walls not exposed : wall_05 wall_06 wall_07 wall_08
#>  limnigraph successfully generated
plot(limnigraph)