use*_*1_G 24
你的意思是这样的?
d <- data.frame(x = 2, y=1:5)
boxplot(d)
boxplot(d, axes=FALSE) # add axes=FALSE to remove axes
Run Code Online (Sandbox Code Playgroud)
然后你可以随意添加轴:
例如
d <- data.frame(x = 2, y=1:5)
boxplot(d, axes=FALSE)
axis(2, at=1:5, labels=c(rep("whatever I want",5)))
Run Code Online (Sandbox Code Playgroud)
根据您的评论编辑:
删除默认标签:
boxplot(d, xaxt="n")
Run Code Online (Sandbox Code Playgroud)