我使用qplot
從ggplot2
做散點圖。我無法看到x軸上的所有值。另外,它將從x軸移除NA
。如何保留NA
並控制X軸顯示的特徵數量?不在ggplot2散點圖中顯示使用qplot
rate_plot = qplot(Result$temp, Result$CR, main="Rate", xlab=feature, ylab="Rate", size=I(3))+
scale_x_discrete(drop=FALSE)
數據: Google Docs link
Result <- read.table(text = " temp NCH type CH i.type CR
1 NA 1878464 nochurn 549371 churn 0.226280204
2 1.87 2236 nochurn 4713 churn 0.678227083
3 2.14 4945 nochurn 8530 churn 0.633024119
4 2.25 423 nochurn 972 churn 0.696774194
5 2.79 3238 nochurn 7692 churn 0.703751144
6 3.25 266817 nochurn 12678 churn 0.045360382
7 3.33 2132 nochurn 4295 churn 0.668274467
8 5.1 6683 nochurn 7743 churn 0.536739221
9 6 342554 nochurn 21648 churn 0.059439542
10 6.51 1785 nochurn 4764 churn 0.727439304
11 8 13668 nochurn 22751 churn 0.624701392
12 9.85 6005 nochurn 14687 churn 0.709791224
13 11.99 378 nochurn 850 churn 0.69218241", header = TRUE)
你是什麼意思「無法看到在x軸的所有值」?也許看到[scale_x_continuous](http://docs.ggplot2.org/0.9.3/scale_continuous.html) – zx8754
謝謝你指點我正確的方向。我現在可以在我的x軸上添加更多標籤。這解決了其中一個問題。 – Shivendra
它解決了什麼問題? – Gregor