| plot_windfarmGA | R Documentation |
Draw the useful summary plots of a GA run, one after another: best layout, fitness, operator rates, population, cells, efficiency, and the cell heatmap. In an interactive session every page waits for Enter so nothing is overwritten in the Plots pane.
plot_windfarmGA(
result,
area,
which_plot = "all",
best = 1,
plot_en = 1,
weibull_src = NULL,
ask = NULL,
plotly = NULL
)
result |
The output of |
area |
Site polygon ( |
which_plot |
|
best |
How many distinct best layouts to draw. Default is 1. |
plot_en |
A numeric value that indicates if the best energy or efficiency
output should be plotted. |
weibull_src |
|
ask |
If |
plotly |
If |
Returns NULL. Used for plotting
Other Plotting Functions:
generation_layouts(),
plot_cell_heatmap(),
plot_cloud(),
plot_development(),
plot_evolution(),
plot_generation(),
plot_parkfitness(),
plot_population(),
plot_result(),
plot_windrose(),
population_census(),
random_search_single()
## Not run:
library(sf)
area <- sf::st_as_sf(sf::st_sfc(
sf::st_polygon(list(cbind(
c(4498482, 4498482, 4499991, 4499991, 4498482),
c(2668272, 2669343, 2669343, 2668272, 2668272)
))),
crs = 3035
))
plot_windfarmGA(resulthex, area)
plot_windfarmGA(resultrect, area, which_plot = "progress")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.