《小明的數(shù)據(jù)分析筆記本》中給出的解決辦法
R語(yǔ)言ggplot2零散知識(shí)點(diǎn):調(diào)整坐標(biāo)軸文字和標(biāo)題與坐標(biāo)軸的距離的
我的解決辦法
由于畫(huà)圖少油额,過(guò)于健忘跟衅,ggplot2調(diào)整的細(xì)節(jié),再遇到就放上來(lái)。
看到element_text()幫助文檔中vjust這個(gè)參數(shù)比較眼熟,試了下,可以。
調(diào)整 vjust如下寇僧。
library(ggplot2)
df <- iris
ggplot(df)+
geom_point(aes(Sepal.Length,Sepal.Width))+
theme(axis.title.x = element_text(vjust = -8), #設(shè)置vjust為負(fù)值
axis.text.x = element_text(vjust = -4),
plot.margin = margin(2,2,80,2) #調(diào)整畫(huà)圖邊緣以顯示x坐標(biāo)軸名稱。
)