Learn R Programming

pacta.loanbook (version 0.1.0)

qplot_techmix: Create a quick techmix plot

Description

Compared to plot_techmix() this function:

  • is restricted to plotting future as 5 years from the start year,

  • outputs pretty bar labels, based on metric column,

  • outputs pretty legend labels, based on technology column,

  • outputs a title.

Usage

qplot_techmix(data)

Value

An object of class "ggplot".

Arguments

data

A data frame like the output of prep_techmix().

See Also

Other plotting functions: plot_emission_intensity(), plot_techmix(), plot_trajectory(), prep_emission_intensity(), prep_techmix(), prep_trajectory(), qplot_emission_intensity(), qplot_trajectory(), recode_metric_techmix(), recode_metric_trajectory(), scale_colour_r2dii(), scale_colour_r2dii_sector(), scale_colour_r2dii_tech(), scale_fill_r2dii(), scale_fill_r2dii_sector(), scale_fill_r2dii_tech(), spell_out_technology(), theme_2dii(), to_title()

Examples

Run this code
# `data` must meet documented "Requirements"
data <- subset(
  market_share,
  sector == "power" &
    region == "global" &
    scenario_source == "demo_2020" &
    metric %in% c("projected", "corporate_economy", "target_sds")
)

qplot_techmix(data)

Run the code above in your browser using DataLab