Skip to content

Commit 08e43e3

Browse files
committed
changed variable names
1 parent 4fac04c commit 08e43e3

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed
1 Byte
Binary file not shown.
9 Bytes
Loading

session3_r/scripts/emissions_figure.R

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,33 @@
11
library(tidyverse)
22
library(ggplot)
3+
# Plot Figure on Multi-Objective Analysis of electricity systems
4+
# for UBRM-Book/Chapter 6.1
35

46
### Set Working Directory - works in R-Studio only
57
scriptDir<-dirname(rstudioapi::getActiveDocumentContext()$path)
68
setwd(paste0(scriptDir,"/../"))
79

8-
tab<-read_csv("data/results_ubrmskript.csv")
910

10-
tab<-tab %>%
11-
mutate(diff=c(tab$`Effective Cost`[-1],0)-`Effective Cost`)
11+
tab_emissions_costs<-read_csv("data/results_ubrmskript.csv")
1212

13-
points<-tab %>%
13+
points_scenarios<-tab_emissions_costs %>%
1414
filter(Scenario %in% c("EUA160","s8")) %>%
1515
mutate(Szenario=Scenario)
1616

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")
1918

2019
erc_colors<-c("#C72321","#6E9B9E")
2120

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)) +
2422
geom_line() +
2523
geom_point() +
2624
theme_bw() +
2725
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) +
3028
scale_color_manual(values=c(erc_colors,erc_colors))
3129

3230

3331
ggsave("figures/figure_multi_objective.png")
32+
3433
ggsave("figures/figure_multi_objective.pdf")

0 commit comments

Comments
 (0)