0
Q
調整距離
A
回答
1
您可以使用ggplot2中的theme(plot.margin)
函數來減小間距。
一個簡單的工作示例這裏:
library(grid)
library(gridExtra)
library(ggplot2)
x <- seq(1,10,1)
y <- dnorm(x,mean=10,sd=0.5)
# Create p1
p1 <- qplot(x,y) + theme(plot.margin=unit(c(1,1,-0.5,1),"cm"))
# Create p2
p2 <- qplot(x,y) + theme(plot.margin=unit(c(-0.5,1,1,1),"cm"))
grid.arrange(p1,p2)
編輯 的4個數字是c(bottom,left,top,right)
樣本輸出
相關問題
- 1. JavaScript - Google Maps API:調整路線距離
- 2. 調整從xlab到x軸的距離
- 3. 當自動調整時,UISlider離開底部的恆定距離
- 4. HTML調整間距
- 5. 距離Cell塔的距離
- 6. ggplot geom_bar with position_dodge不調整酒吧之間的距離
- 7. 同時調整x軸和y軸間隔的距離
- 8. 如何調整onFocus自動滾動距離?
- 9. 在jsp中調整兩個位置之間的距離
- 10. 使用css調整下劃線和文本之間的距離
- 11. 調整jquery mobile中的滑動事件的距離
- 12. ggplot2:將圖例距離調整爲x軸?
- 13. 調整matplotlib中兩個子圖之間的距離
- 14. 在R圖中調整x軸與文本之間的距離
- 15. 作爲mc之間距離的函數調整大小
- 16. 調整RGraph中的點之間的距離(javascript)
- 17. 距離
- 18. 調整默認邊距
- 19. 計算距離位置的距離 - iPhone
- 20. 如何計算距離cellID的距離?
- 21. FetchXML - GeoCode距離按距離搜索
- 22. 獲取距離邊緣的距離3
- 23. 減少距離
- 24. 測量距離
- 25. 計算距離
- 26. 包距離
- 27. 反轉距離
- 28. 計算距離
- 29. 表面距離
- 30. 歐氏距離
你能解釋一下內單位的4個數字( )是指? – ghb
編輯我的答案是指四個數字。 –