私は次のプロットを持っています
xleft<-c(1,2,3)
xright<-c(2,3,4)
ybottom<-c(1,2,3)
ytop<-c(2,3,4)
plot(c(1,4),c(1,4),type="n",main="title",xlab="site.x",ylab="ylab")
rect(xleft,ybottom,xright,ytop,col=c("blue","red","green"))
これらの位置とラベルを使用して、両方の軸にかなり長い種名を追加したいと思います
#Label position along axes
x.label.position<-(xleft+xright)/2
y.label.position<-(ybottom+ytop)/2
#Labels
x.label<-c("Long species Name1","Long species Name2","Long species Name3")
x.label<-c("Long species Name4","Long species Name5","Long species Name5")
数値軸と軸のタイトルをそのままにしておきたいと思います。また、伝説を追加したいと思います。したがって、最終製品は次のようになります
を使用して軸を完全にクリアする必要なく、これを行う最善の方法は何ですか?
par(xaxt = "n", yaxt = "n")
テキストを追加しますか?アドバイスありがとうございます。