Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想增加图表内这些百分比值的字体大小。例如,那些 56%、19%、25%。
我使用的当前代码
Q5 <- likert(tmp) plot(Q5, ordered=FALSE) + theme(aspect.ratio=0.3, legend.text =element_text(color="black",size=8), axis.text=element_text(color="black",size=12))
我试图在绘图函数中添加 cex=5 ,但根本没有效果。
假设您正在使用该likert包,您可以使用参数设置文本标签的大小text.size:
likert
text.size
plot(Q5, text.size=5, ordered=FALSE)
您可以通过运行查看李克特图的各种选项的描述?likert.options。
?likert.options