Skip to content

Commit 8a62def

Browse files
committed
Adjusting font sizes in the R reports for clearer text.
1 parent 6bc5597 commit 8a62def

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

reporting/gobench_histogram_nsop.r

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ plot = readr::read_delim(args[1], "\t", skip = 3, col_names = FALSE) %>%
3535
ylab("nanoseconds per operation") +
3636
labs(fill='bytes') +
3737
theme(axis.text.x = element_text(angle = 45, hjust = 1),
38-
axis.title.x=element_blank())
38+
axis.title.x=element_blank()) +
39+
40+
theme(text = element_text(size=24))
41+
3942

4043
ggsave(args[2], plot, width = 16, height = 9)

reporting/gobench_multi_nsop.r

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ plot = readr::read_delim(args[1], "\t", skip = 3, col_names = FALSE) %>%
3333
geom_col() +
3434
rotate_x_labels(vjust = .5) +
3535
# labs(title="Title", subtitle="Sub title") +
36+
theme(text = element_text(size=14)) +
3637
xlab("name") +
3738
ylab("nanoseconds per operation") +
3839
facet_wrap(~ Bytes, scales="free_y")

0 commit comments

Comments
 (0)