axis() を使用して、プロットの上と右に目盛りとラベルを付けたプロットを作成したいと考えています。plot() 関数で「自動的に」印刷される目盛りとラベルを抑制するにはどうすればよいですか? ありがとうございました
x<-1:10
y<-1:10
quartz("test")
par(mar=c(10,10,10,10)+0.1)#sets margins of plotting area
par(pty="s")#fixes the aspect ratio to 1:1
#Automatically adds ticks, numbers and axis labels. How can I avoid this?
plot(x,y,typ="n")
#Adds axes above and to the right of plot area...I want these only
axis(side=4,las=2, ylab="y label")
axis(side=3,las=1,xlab="x label")