View source: R/graph_functions.R
eta_fu_graph | R Documentation |
Creates an eta_fu graph from a completed eta_fu table,
created by the assemble_eta_fu_tables()
function.
eta_fu_graph(
.df,
countries,
country = IEATools::iea_cols$country,
quantity = IEATools::template_cols$quantity,
year = IEATools::iea_cols$year,
.values = IEATools::template_cols$.values,
machine = IEATools::template_cols$machine,
eu_product = IEATools::template_cols$eu_product,
machine_eu_product = paste0(machine, "_", eu_product)
)
.df |
A data frame comprised of completed final to useful efficiency values - eta.fu |
countries |
The countries for which efficiency plots are to be created. |
country, year |
See |
.values, machine, quantity, eu_product |
See |
machine_eu_product |
The name of a combined |
This function is called repeatedly from eta_fu_plots_df()
.
machine
, and destination
form the title of the graph.
A ggplot2
graph object
library(ggplot2)
# Make a simple data frame with the expected structure.
tibble::tribble(~Year, ~.values, ~Machine, ~Eu.product,
1967, 0.5, "Cars", "MD",
1967, 0.5, "Industry static engines", "MD",
2020, 0.8, "Cars", "MD",
2020, 0.2, "Industry static engines", "MD") %>%
alloc_graph(country = "Example", ef_product = "Petrol", destination = "Transport")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.