如何将灰色分面标签(A和B)更改为带有白色文本的红色背景?
A = data.table(x = 1:4, y = 1:4, z = c('A','A','B','B'))
ggplot(A) + geom_point(aes(x = x, y = y)) + facet_wrap(~z) + theme_bw()
最佳答案
你可以做:
ggplot(A) +
geom_point(aes(x = x, y = y)) +
facet_wrap(~z) +
theme_bw()+
theme(strip.background =element_rect(fill="red"))+
theme(strip.text = element_text(colour = 'white'))
关于r - 更改构面标签文本和背景颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41631806/