Skip to content

Commit 0050433

Browse files
committed
Add eps save statements for plots
1 parent b626fec commit 0050433

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

plots/characteristics.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,5 @@ combo <- ggplot(grid3, aes(x = platform, y = characteristic, group = literature_
165165
strip.text.y = element_text(margin = margin(l = 4))
166166
)
167167
ggsave('characteristics.pdf', width = 13, height = 15, device = cairo_pdf(), plot = combo)
168+
# ggsave('characteristics.eps', width = 13, height = 15, plot = combo)
168169
dev.off()

plots/configurations.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,5 @@ ggplot(grid2, aes(x=new_col, y=rel_freq, label=rel_freq, fill=literature_type))
124124
)
125125

126126
ggsave("configurations.pdf", width = 6.5, height = 16.5, device = cairo_pdf())
127+
# ggsave("configurations.eps", width = 6.5, height = 16.5)
127128
dev.off()

plots/rankings.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ ggplot(df_freq, aes(fill=venue_ranking, y=rel_freq, x=x)) +
4040
legend.box.margin=margin(0, 0,-10, 0)
4141
)
4242
ggsave('rankings.pdf', width = 6.5, height = 2, device = cairo_pdf())
43+
# ggsave('rankings.eps', width = 6.5, height = 2)
4344
dev.off()

plots/reproducibility.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,4 @@ background <- bgcolors["blue-gray"]
9090
g2 <- cowplot::ggdraw(p_with_legend) +
9191
theme(plot.background = element_rect(fill=background, color = NA))
9292
ggsave('reproducibility.pdf', width = 6.5, height = 9.3, device = cairo_pdf(), plot = g2)
93+
# ggsave('reproducibility.eps', width = 6.5, height = 9.3, plot = g2)

plots/trends.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ ggplot(grid, aes(x=literature_type, y=freq, fill = venue_type, label=freq)) +
6262
axis.text.x = element_text(size = 10)
6363
)
6464
ggsave('trends.pdf', width = 6.5, height = 6.8, device = cairo_pdf())
65+
# ggsave('trends.eps', width = 6.5, height = 6.8)
6566
dev.off()
6667

6768
# Cumulative lineplot

0 commit comments

Comments
 (0)