久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

R語言ggplot2之圖例的設(shè)置

 杉杉之園 2017-09-13

引言

圖例的設(shè)置包括移除圖例,、改變圖例的位置、改變標(biāo)簽的順序,、改變圖例的標(biāo)題等,。

移除圖例

有時候你想移除圖例,使用 guides(),。

library(ggplot2)
p <- ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot()
p + guides(fill=FALSE)
  • 1
  • 2
  • 3

這里寫圖片描述

改變圖例的位置

我們可以用theme(legend.position=…)將圖例移到圖表的上方,、下方、左邊和右邊,。

p <- ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
scale_fill_brewer(palette="Pastel2")
#上方 
p + theme(legend.position="top")#左邊left,右邊 right, 底部bottom
  • 1
  • 2
  • 3
  • 4

這里寫圖片描述

改變圖例標(biāo)簽的順序

我們可以設(shè)置圖例的指定順序,,也可以逆轉(zhuǎn)圖例的位置。

p <- ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot()
#使用limit參數(shù)設(shè)置圖例位置
p + scale_fill_discrete(limits=c("trt1", "trt2", "ctrl"))
#使用guides(fill=guide_legend(reverse=TRUE))逆轉(zhuǎn)圖例
p + guides(fill=guide_legend(reverse=TRUE))
  • 1
  • 2
  • 3
  • 4
  • 5

這里寫圖片描述
這里寫圖片描述

設(shè)置圖例的標(biāo)題

我們可以改變圖例的標(biāo)題,,也可以改變標(biāo)題的主題格式,,還可以刪除圖例標(biāo)題。

#改變標(biāo)題名字 用labs()
p + labs(fill="Condition")
# 設(shè)置圖例的標(biāo)題的字體,、顏色,、大小用theme(legend.title=element_text())
p + theme(legend.title=element_text(face="italic", family="Times", colour="red",
size=14))
#移除圖例標(biāo)題
#增加 guides(fill=guide_legend(title=NULL))函數(shù)即可移除圖例標(biāo)題
ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
guides(fill=guide_legend(title=NULL))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

這里寫圖片描述
這里寫圖片描述
這里寫圖片描述

設(shè)置圖例的標(biāo)簽

library(gcookbook)
#改變標(biāo)簽的名字
p <- ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot()
p + scale_fill_discrete(labels=c("Control", "Treatment 1", "Treatment 2"))
#改變標(biāo)簽的主題
p + theme(legend.text=element_text(face="italic", family="Times", colour="red",
size=14))
#多行圖例標(biāo)簽的展示
#有時候標(biāo)簽名字較長,一行展示不夠美觀,,需要多行呈現(xiàn) 加一個\n
p + scale_fill_discrete(labels=c("Control", "Type 1\ntreatment",
"Type 2\ntreatment"))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

這里寫圖片描述
這里寫圖片描述
這里寫圖片描述

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多