2015-09-20 13 views
5

異なる高さの(x軸の)ラベルをどのように水平に整列できますか?ここ は一例であり:異なる高さの軸ラベルを整列する方法は?

nms <- c(expression(A), expression(B), expression(C), 
     expression(D[1]), expression(E^1), expression(F)) 
boxplot(count ~ spray, data=InsectSprays, names=nms) 

ラベル "E" はうまくA、B、CとFと整列されるが、D_1 ではありません。 D_1は他のラベルと同様にどのように配置できますか?

enter image description here

答えて

3

あなたは、例えばmtextを使用して手動で軸をプロットすることができます。

## reset defalt names 
boxplot(count ~ spray, data=InsectSprays,names=NA) 
## adjustemnt vectors , see that only d_1 has an adj !=0 
adj=c(0,0,0,0.2,0,0) 
## loop over expressions and plot them one by one 
for(s in seq_along(nms)) 
    mtext(nms[s], side=1, line=1,at=s,padj=adj[s]) 

enter image description here

関連する問題