绘图区域对于Y轴来说太短(基本图形)

时间:2014-04-09 15:07:42

标签: r

我创建了这个data frame

seq(1,70)
Group <-paste("a", 1:70, sep="")
Counts <- c(1:18, 5:14, 1:20, 5:20, 10:15)

绘制时,会返回"Group"不适合的大图:

barplot(Counts, names.arg=Group, 
        horiz=TRUE, las=1, cex.names=0.6, border=NA,
        ylim=c(0,30), xlim=c(0,20), width = 1.5)

编辑:这是删除ylim=c(0,30)

后的情节

enter image description here

我希望能够在“组”轴上看到每个术语。

2 个答案:

答案 0 :(得分:0)

ylim参数限制了显示的组数。删除它,你可以看到所有这些。

答案 1 :(得分:0)

我试过了:

barplot(stage1_90$Percentage.stage1, 
        names.arg=stage1_90$miR.stage1, 
        horiz=TRUE, las=1, cex.names=0.5, border=NA,
        ylim=c(0,125), xlim=c(0,14), main = "Stage 1. Top 90%",
        xlab = "% total expression", space = 1, yaxs = "i")

然后我用A4格式打印