- Notifications
You must be signed in to change notification settings - Fork2
A package containing functions to create standard PACTA plots using ggplot, together with data processing functions needed for the charts.
License
Unknown, MIT licenses found
Licenses found
RMI-PACTA/r2dii.plot
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
The goal of r2dii.plot is to help you plot PACTA data in an informative,beautiful, and easy way.
You can install the released version of r2dii.plot from CRAN with:
install.packages("r2dii.plot")And the development version from GitHub with:
# install.packages("devtools")devtools::install_github("RMI-PACTA/r2dii.plot")
The r2dii.plot package is designed to work smoothly with other “r2dii”packages –r2dii.data,r2dii.match, andr2dii.analysis. It alsoplays well with theggplot2 package,which helps you customize your plots. Here, we’ll use an example dataset that comes with r2dii.plot and that resembles the output of thetarget_market_share()function in the r2dii.analysis package.
library(ggplot2,warn.conflicts=FALSE)library(dplyr,warn.conflicts=FALSE)library(r2dii.plot)
- Use
qplot_*()to quickly get a plot with standard titles and labels.
# `data` must meet documented "Requirements"data<-market_share_demo %>% filter(sector=="power",technology=="renewablescap",region=="global",scenario_source=="demo_2020" )qplot_trajectory(data)
- Use
plot_*()for a more “bare” plot that you can customize yourselfby modifying the input data and applyingggplot2functions.
data<-market_share_demo %>% filter(sector=="power",technology=="renewablescap",region=="global",scenario_source=="demo_2020", between(year,2020,2035) ) %>% mutate(label= case_when(metric=="projected"~"Your Portfolio",metric=="corporate_economy"~"Benchmark (Corp. Econ.)",metric=="target_sds"~"SDS Scenario",metric=="target_sps"~"SPS Scenario",metric=="target_cps"~"CPS Scenario",TRUE~metric ) )data %>% prep_trajectory() %>% plot_trajectory()+ labs(title="Power production trajectory for Renewables",subtitle="With reference to climate scenarios.",x="Year",y="Production (normalized to 2020)" )
For examples of other plots and data sets please visitGet started withr2dii.plot.
This project has received funding from theEuropean Union LIFEprogramand the International Climate Initiative (IKI). The Federal Ministry forthe Environment, Nature Conservation and Nuclear Safety (BMU) supportsthis initiative on the basis of a decision adopted by the GermanBundestag. The views expressed are the sole responsibility of theauthors and do not necessarily reflect the views of the funders. Thefunders are not responsible for any use that may be made of theinformation it contains.
About
A package containing functions to create standard PACTA plots using ggplot, together with data processing functions needed for the charts.
Resources
License
Unknown, MIT licenses found
Licenses found
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors8
Uh oh!
There was an error while loading.Please reload this page.


