R语言 让纵坐标的标签显示为横向

参考自153分钟学习R语言

坐标y 上的数字如何水平放置?
仍然是绘图参数问题:


?par # see  las
plot(0, 0, xaxt="n" , type="n" , ylim=c( 0, 100) , las=1 )
mtext ("35" , side =2, at=35, line =1, las=1)

原文地址:https://www.cnblogs.com/arcserver/p/6437425.html