ggplot2 003 繪圖參數(shù) — 標(biāo)題及圖例

ggplot2 Graphical Parameters

1.標(biāo)題:主標(biāo)題,軸和圖例標(biāo)題

ggplot2軟件包修改繪圖標(biāo)題(主標(biāo)題脯倒,軸標(biāo)簽和圖例標(biāo)題)主要是通過以下函數(shù):

  • ggtitle(label)#主標(biāo)題
  • xlab(label)#x軸標(biāo)簽
  • ylab(label)#y軸標(biāo)簽
  • labs(...)#用于主標(biāo)題播急,軸標(biāo)簽和圖例標(biāo)題

1.1 數(shù)據(jù)準(zhǔn)備

# 將dose轉(zhuǎn)換weight因子
ToothGrowth$dose <- as.factor(ToothGrowth$dose)
# 檢查數(shù)據(jù)
head(ToothGrowth)
library(ggplot2)
p <- ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot()
p
image.png

1.2 更改主標(biāo)題及軸標(biāo)題

1.2.1 使用 ggtitle(), xlab() and ylab()
p + ggtitle("Plot of length \n by dose") +
  xlab("Dose (mg)") + ylab("Teeth length")
image.png
1.2.2 使用labs()
p +labs(title="Plot of length \n by dose",
        x ="Dose (mg)", y = "Teeth length")
image.png

1.3 使用labs()更改圖例

p <- ggplot(ToothGrowth, aes(x=dose, y=len, fill=dose))+
  geom_boxplot()
p
# 更改圖例
p1 <- p + labs(fill = "Dose (mg)")
image.png

1.4 更改主標(biāo)題和軸標(biāo)簽的外觀

可以使用theme()和element_text()函數(shù)自定義主標(biāo)題以及x和y軸標(biāo)簽

# main title
p + theme(plot.title = element_text(family, face, colour, size))
# x axis title 
p + theme(axis.title.x = element_text(family, face, colour, size))
# y axis title
p + theme(axis.title.y = element_text(family, face, colour, size))

## family : font family
## face : font face. Possible values are “plain”, “italic”, “bold” and “bold.italic”
## colour : text color
## size : text size in pts
## hjust : horizontal justification (in [0, 1])
## vjust : vertical justification (in [0, 1])
## lineheight : line height. In multi-line text, the lineheight argument is used to change the
## spacing between lines.
## color : an alias for colour
  • example
# Default plot
p <- ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot() +
  ggtitle("Plot of length \n by dose") +
  xlab("Dose (mg)") + ylab("Teeth length")
p
# Change the color, the size and the face of
# the main title, x and y axis labels
p1 <- p + theme(
plot.title = element_text(color="red", size=14, face="bold.italic"),
axis.title.x = element_text(color="blue", size=14, face="bold"),
axis.title.y = element_text(color="#993333", size=14, face="bold")
)
ggarrange(p,p1)
image.png

1.5 移除x和y軸標(biāo)簽

可以使用element_blank()函數(shù)隱藏主要標(biāo)題和軸標(biāo)簽

p + theme(
  plot.title = element_blank(),
  axis.title.x = element_blank(),
  axis.title.y = element_blank())
image.png

2 圖例的位置及外觀

2.1 數(shù)據(jù)準(zhǔn)備

# 將dose轉(zhuǎn)換weight因子
ToothGrowth$dose <- as.factor(ToothGrowth$dose)
# 檢查數(shù)據(jù)
head(ToothGrowth)
library(ggplot2)
p <- ggplot(ToothGrowth, aes(x=dose, y=len, fill=dose)) + 
  geom_boxplot()
p
image.png

2.2 更改圖例位置

可以使用theme()函數(shù)來更改圖例的位置

# legend.position are : “l(fā)eft”,“top”, “right”, “bottom”,vector c(x,y)
p1 <- p + theme(legend.position="top")
p2 <- p + theme(legend.position="bottom")
p3 <- p + theme(legend.position = c(0.8, 0.2))
ggarrange(p1,p2,p3,nrow=1)
image.png

2.3 更改圖例標(biāo)題和文本字體樣式

# 圖例標(biāo)題
p4 <- p + theme(legend.title = element_text(colour="blue", size=10, 
                                      face="bold"))
# 圖例標(biāo)簽
p5 <- p + theme(legend.text = element_text(colour="blue", size=10, 
                                     face="bold"))
ggarrange(p4,p5)
image.png

2.4 更改圖例框的背景顏色

# 背景顏色修改
p6 <- p + theme(legend.background = element_rect(fill="lightblue", 
                                           size=0.5, linetype="solid"))
p7 <- p + theme(legend.background = element_rect(fill="lightblue",
                                           size=0.5, linetype="solid", 
                                           colour ="darkblue"))
ggarrange(p6,p7)
image.png

2.5 更改圖例項(xiàng)的順序

p + scale_x_discrete(limits=c("2", "0.5", "1"))
image.png

2.6 移除圖例

# Remove only the legend title
p8 <- p + theme(legend.title = element_blank())
# Remove the plot legend
p9 <- p + theme(legend.position='none')
ggarrange(p8,p9)
image.png

2.7 刪除條形圖例中的斜線

# 默認(rèn)圖
p10 <- ggplot(data=ToothGrowth, aes(x=dose, fill=dose)) + geom_bar()
# 更改條形圖邊框顏色饿肺,
# 但在圖例中添加了斜杠
p11 <- ggplot(data=ToothGrowth, aes(x=dose, fill=dose)) +
  geom_bar(colour="black")
p11
# 隱藏斜線:
# 1.繪制沒有邊框顏色的條,
# 2.再次用邊框顏色繪制條形,但帶有空白圖例匿又。
p12 <- ggplot(data=ToothGrowth, aes(x=dose, fill=dose))+ 
  geom_bar() + 
  geom_bar(colour="black", show.legend = FALSE)
ggarrange(p10,p11,p12,nrow = 1)

然而很尷尬,第二幅圖的圖例并沒有出現(xiàn)斜線

image.png

3. guides() 設(shè)置或刪除圖例以獲得特定的美感

3.1 設(shè)置或刪除具有特定美感的圖例(填充建蹄,顏色碌更,大小,形狀等)

# Prepare the data : convert cyl and gear to factor variables
mtcars$cyl<-as.factor(mtcars$cyl)
mtcars$gear <- as.factor(mtcars$gear)
head(mtcars)
p <- ggplot(data = mtcars, 
            aes(x=mpg, y=wt, color=cyl, size=qsec, shape=gear))+
  geom_point()
# Print the plot without guide specification
p
image.png

3.2 更改多個(gè)指南的圖例位置

# Change the legend position
p +theme(legend.position="bottom")
image.png
# Horizontal legend box
p +theme(legend.position="bottom", legend.box = "horizontal")
image.png

3.3 更改多個(gè)圖例的順序

p+guides(color = guide_legend(order=1),
         size = guide_legend(order=2),
         shape = guide_legend(order=3))
image.png

如果使用連續(xù)顏色洞慎,則可以使用功能guide_colourbar()更改顏色指南的順序:

qplot(data = mpg, x = displ, y = cty, size = hwy,
      colour = cyl, shape = drv) +
  guides(colour = guide_colourbar(order = 1),
         alpha = guide_legend(order = 2),
         size = guide_legend(order = 3))
image.png

3.4 刪除具有特殊美感的圖例

p+guides(color = FALSE, size = FALSE)
image.png
# Remove legend for the point shape
p1 <- p+scale_shape(guide=FALSE)
# Remove legend for size
p2 <- p +scale_size(guide=FALSE)
# Remove legend for color
p3 <- p + scale_color_manual(values=c('#999999','#E69F00','#56B4E9'),
                       guide=FALSE)
ggarrange(p1,p2,p3,nrow = 1)
image.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
禁止轉(zhuǎn)載针贬,如需轉(zhuǎn)載請(qǐng)通過簡(jiǎn)信或評(píng)論聯(lián)系作者。
  • 序言:七十年代末拢蛋,一起剝皮案震驚了整個(gè)濱河市桦他,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖快压,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件圆仔,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡蔫劣,警方通過查閱死者的電腦和手機(jī)坪郭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來脉幢,“玉大人歪沃,你說我怎么就攤上這事∠铀桑” “怎么了沪曙?”我有些...
    開封第一講書人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)萎羔。 經(jīng)常有香客問我液走,道長(zhǎng),這世上最難降的妖魔是什么贾陷? 我笑而不...
    開封第一講書人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任缘眶,我火速辦了婚禮,結(jié)果婚禮上髓废,老公的妹妹穿的比我還像新娘巷懈。我一直安慰自己,他們只是感情好慌洪,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開白布砸喻。 她就那樣靜靜地躺著,像睡著了一般蒋譬。 火紅的嫁衣襯著肌膚如雪割岛。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評(píng)論 1 285
  • 那天犯助,我揣著相機(jī)與錄音癣漆,去河邊找鬼。 笑死剂买,一個(gè)胖子當(dāng)著我的面吹牛惠爽,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播瞬哼,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼婚肆,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了坐慰?” 一聲冷哼從身側(cè)響起较性,我...
    開封第一講書人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后赞咙,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體责循,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年攀操,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了院仿。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡速和,死狀恐怖歹垫,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情颠放,我是刑警寧澤排惨,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布,位于F島的核電站慈迈,受9級(jí)特大地震影響若贮,放射性物質(zhì)發(fā)生泄漏省有。R本人自食惡果不足惜痒留,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望蠢沿。 院中可真熱鬧伸头,春花似錦、人聲如沸舷蟀。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽野宜。三九已至扫步,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間匈子,已是汗流浹背河胎。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留虎敦,地道東北人游岳。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像其徙,于是被迫代替她去往敵國和親胚迫。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345