本文介绍了用粗体标记某些轴文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在情节中将与"GTAAACATCCTCGACTGGAAGC"匹配的文本标记为粗体.我尝试过的是这样的:
I want to mark the text that matches "GTAAACATCCTCGACTGGAAGC" bold in my plot.What I have tried is this:
theme(axis.text.y=element_text(face=ifelse(levels(miR10b_30a$ID2)==
"GTAAACATCCTCGACTGGAAGC","bold")))
出现此错误:
还有其他好的方法吗?
推荐答案
您的代码中的问题是 ifelse
.
以下是一个应澄清这一点的示例:
The problem in your code is ifelse
.
Here is an example that should clarify the point:
vec_fontface <- ifelse(levels(iris$Species)=="setosa","bold","plain")
ggplot(iris, aes(Species, Sepal.Length)) + geom_point() +
theme(axis.text.x=element_text(face=vec_fontface))
这篇关于用粗体标记某些轴文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!