我剛剛開始使用R,我使用RStudio。Y軸不顯示R中的標籤名稱
現在我正在玩情節,看看它們是如何工作的。
這裏是我的數據:
https://www.dropbox.com/s/wp4gs8qamdo1irk/State_Zhvi_Summary_AllHomes.csv?dl=0
我一直在試圖繪製barplot爲$ Zhvi對$ RegionName
這裏是我的代碼:
labels <- allHomet$RegionName
mp<-barplot(round((allHomet$Zhvi)/1000,digits=2)[order(labels)],horiz=TRUE,las=1,col=c(palette(heat.colors(6,alpha=1))),
border=NA,
main="Price of housing in United states",
xlab="Price",
las=2)!
我不明白y軸上的離子名稱,它顯示爲空白。
任何人都可以告訴我如何讓區域名稱出現嗎?
看一看在「names.arg」 – 2014-10-05 23:54:53
是它填充名字由niw它搞砸了,這裏是plothttps://www.dropbox.com/s/g7fxxbzy50bhhsh/Rplot01.png?dl = 0 – Snedden27 2014-10-06 00:27:53
嘗試使用'png'(或'jpeg','pdf',等等)函數並且調整尺寸(參數'hight'和'width')。設置較低的'cex'也可能有幫助。 – 2014-10-06 01:48:53