@@ -51,7 +51,7 @@ load("FDR.RData")
51
51
# # Plot ####
52
52
{
53
53
p_all_precision = ggplot(data = gt_all , mapping = aes(x = method , y = precision , color = method )) +
54
- geom_boxplot() + # geom_point(data = stan, mapping = aes(x = method, y = precision, fill = method), shape = 22, color = "black") +
54
+ geom_boxplot(outlier.shape = NA ) + # geom_point(data = stan, mapping = aes(x = method, y = precision, fill = method), shape = 22, color = "black") +
55
55
geom_point(alpha = 1 / 5 , position = " jitter" ) +
56
56
# ggtitle("Precision by Ground Truth") +
57
57
theme_classic(base_size = 12 # edit font size for all non-data text
@@ -76,7 +76,7 @@ load("FDR.RData")
76
76
facet_wrap(~ library , nrow = 2 ) # +coord_flip()
77
77
78
78
p1_precision = ggplot(data = gt_all %> % filter(library == " HMDB" ), mapping = aes(x = method , y = precision , color = method )) +
79
- geom_boxplot() + # geom_point(data = stan, mapping = aes(x = method, y = precision, fill = method), shape = 22, color = "black") +
79
+ geom_boxplot(outlier.shape = NA ) + # geom_point(data = stan, mapping = aes(x = method, y = precision, fill = method), shape = 22, color = "black") +
80
80
geom_point(alpha = 1 / 5 , position = " jitter" ) +
81
81
# ggtitle("Precision by Ground Truth") +
82
82
# guides(color = F) +
@@ -147,7 +147,7 @@ load("FDR.RData")
147
147
# # Plot ####
148
148
{
149
149
p_all_FDR = ggplot(data = fdr_all , mapping = aes(x = method , y = FDR , color = method )) +
150
- geom_boxplot() + # geom_point(data = stan, mapping = aes(x = method, y = precision, fill = method), shape = 22, color = "black") +
150
+ geom_boxplot(outlier.shape = NA ) + # geom_point(data = stan, mapping = aes(x = method, y = precision, fill = method), shape = 22, color = "black") +
151
151
geom_point(alpha = 1 / 5 , position = " jitter" ) +
152
152
# ggtitle("Precision by Ground Truth") +
153
153
theme_classic(base_size = 12 # edit font size for all non-data text
@@ -172,7 +172,7 @@ load("FDR.RData")
172
172
facet_wrap(~ library , nrow = 2 ) # +coord_flip()
173
173
174
174
p1_FDR = ggplot(data = fdr_all %> % filter(library == " HMDB" ), mapping = aes(x = method , y = FDR , color = method )) +
175
- geom_boxplot() + # geom_point(data = stan, mapping = aes(x = method, y = precision, fill = method), shape = 22, color = "black") +
175
+ geom_boxplot(outlier.shape = NA ) + # geom_point(data = stan, mapping = aes(x = method, y = precision, fill = method), shape = 22, color = "black") +
176
176
geom_point(alpha = 1 / 5 , position = " jitter" ) +
177
177
# ggtitle("Precision by Ground Truth") +
178
178
guides(color = guide_legend(
0 commit comments