我尝试将非规范化与规范化的特征数据在箱线图中可视化,箱线图与cowplot相邻排列。功能为57个变量,增量编号
plot_grid(
sample_data1 %>%
pivot_longer(-c(ID, outcome), names_to = "feature") %>%
ggplot(aes(x = feature, y = value, fill = outcome)) +
geom_boxplot() +
coord_flip() +
theme(legend.position="top"),
sample_data1.norm %>%
pivot_longer(-c(ID, outcome), names_to = "feature") %>%
ggplot(aes(x = feature, y = value, fill = outcome)) +
geom_boxplot() +
coord_flip() +
theme(legend.position="top"),
label_size=3
)
然而,label_size没有任何影响(参见示例,行太小,标签太小而无法读取)。我遗漏了什么?
最好提供示例....也许theme(axis.text.y = element_text(size = 5))
会把y轴上的字母字体变小。