如何在不丢失R中的标签值的情况下增加绘图标签大小?

时间:2016-01-31 02:39:24

标签: r plot

我正在尝试通过修改cex.axis选项来增加标签大小:

plot(0~0, type="n", xlim=range(int), ylim=c(0,max.of.range), xlab="Dist. from TSS", ylab="Seq Counts", cex.lab=4, cex.axis=4.5, cex.main=2, main=paste0("Combined Average Plot for ", sample.name, " timepoints (", name.of.genelist, ")"))

但正如您所看到的,我在标签值的序列中丢失了某些数字。我怎样才能保留所有数字?或者我如何手动设置要保留的标签值?

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

旋转标签可能会有效。查看lassrt参数。

例如:

plot(0~0, type="n", ... srt="45")