本文介绍了如何从boxplot()生成的图中删除默认轴?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
可能这是一个简单的问题,
Probably this is a simple question,
有人知道如何隐藏 boxplot()$ c中的默认轴x标签吗? $ c> in R?
Does anyone know how to hide the default axis x labels in boxplot()
in R?
这应该很简单,但是我在多个站点和boxplot帮助中进行搜索,但找不到答案。
It should be simple, but I search on several sites and on boxplot help but could not find the answer.
推荐答案
您的意思是这样吗?
d <- data.frame(x = 2, y=1:5)
boxplot(d)
boxplot(d, axes=FALSE) # add axes=FALSE to remove axes
然后可以随意添加轴:
例如
d <- data.frame(x = 2, y=1:5)
boxplot(d, axes=FALSE)
axis(2, at=1:5, labels=c(rep("whatever I want",5)))
根据您的评论进行编辑:
EDIT as per your comment:
删除默认标签:
boxplot(d, xaxt="n")
这篇关于如何从boxplot()生成的图中删除默认轴?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!