문제

Some plot functions of many packages do not accept the las=1 as an argument, nor do they allow yaxt="n" and then drawing with axis().

Is it possible to force las=1 and set it as plotting default on a global level?

도움이 되었습니까?

해결책

las is a global graphical parameter, so you can set it with par(las=1), as you would set any other graphical parameter.

This will be respected on subsequent plots unless specific functions override it atomically or by a subsequent call to par.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top