|
1 | 1 | library(tidyverse)
|
2 | 2 | library(ggplot)
|
| 3 | +# Plot Figure on Multi-Objective Analysis of electricity systems |
| 4 | +# for UBRM-Book/Chapter 6.1 |
3 | 5 |
|
4 | 6 | ### Set Working Directory - works in R-Studio only
|
5 | 7 | scriptDir<-dirname(rstudioapi::getActiveDocumentContext()$path)
|
6 | 8 | setwd(paste0(scriptDir,"/../"))
|
7 | 9 |
|
8 |
| -tab<-read_csv("data/results_ubrmskript.csv") |
9 | 10 |
|
10 |
| -tab<-tab %>% |
11 |
| - mutate(diff=c(tab$`Effective Cost`[-1],0)-`Effective Cost`) |
| 11 | +tab_emissions_costs<-read_csv("data/results_ubrmskript.csv") |
12 | 12 |
|
13 |
| -points<-tab %>% |
| 13 | +points_scenarios<-tab_emissions_costs %>% |
14 | 14 | filter(Scenario %in% c("EUA160","s8")) %>%
|
15 | 15 | mutate(Szenario=Scenario)
|
16 | 16 |
|
17 |
| - |
18 |
| -points$Szenario<-c("160Euro CO2-Preis","170 Millionen tCO2 Limit") |
| 17 | +points_scenarios$Szenario<-c("160 Euro CO2-Preis","170 Millionen tCO2 Limit") |
19 | 18 |
|
20 | 19 | erc_colors<-c("#C72321","#6E9B9E")
|
21 | 20 |
|
22 |
| -tab %>% |
23 |
| - ggplot(aes(x=Emissions/1000,y=`Effective Cost`/10^6)) + |
| 21 | +tab_emissions_costs %>% ggplot(aes(x=Emissions/1000,y=`Effective Cost`/10^6)) + |
24 | 22 | geom_line() +
|
25 | 23 | geom_point() +
|
26 | 24 | theme_bw() +
|
27 | 25 | xlab("Emissionen (Millionen tCO2/Jahr)") +
|
28 |
| - ylab("Brennstoff- und Kapitalkosten des Stromsystems (Milliarden Euro/Jahr)")+ |
29 |
| - geom_point(data=points,aes(x=Emissions/1000,y=`Effective Cost`/10^6,col=Szenario,shape=Szenario),size=5)+ |
| 26 | + ylab("Brennstoff- und Kapitalkosten des Stromsystems (Milliarden Euro/Jahr)") + |
| 27 | + geom_point(data=points_scenarios,aes(x=Emissions/1000,y=`Effective Cost`/10^6,col=Szenario,shape=Szenario),size=5) + |
30 | 28 | scale_color_manual(values=c(erc_colors,erc_colors))
|
31 | 29 |
|
32 | 30 |
|
33 | 31 | ggsave("figures/figure_multi_objective.png")
|
| 32 | + |
34 | 33 | ggsave("figures/figure_multi_objective.pdf")
|
0 commit comments