我正在尝试通过修改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, ")"))
但正如您所看到的,我在标签值的序列中丢失了某些数字。我怎样才能保留所有数字?或者我如何手动设置要保留的标签值?
答案 0 :(得分:0)
旋转标签可能会有效。查看las
或srt
参数。
例如:
plot(0~0, type="n", ... srt="45")