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

分享

R語言之可視化①⑨子ggplot2中的圖例修改

 追著天使拔毛 2020-09-10

目錄

R語言之可視化①誤差棒

R語言之可視化②點圖

R語言之可視化③點圖續(xù)

R語言之可視化④點韋恩圖upsetR

R語言之可視化⑤R圖形系統(tǒng)

R語言之可視化⑥R圖形系統(tǒng)續(xù)

R語言之可視化⑦easyGgplot2散點圖

R語言之可視化⑧easyGgplot2散點圖續(xù)

R語言之可視化⑨火山圖

R語言之可視化⑩坐標系統(tǒng)

R語言之可視化①①熱圖繪制heatmap

R語言之可視化①②熱圖繪制2

R語言之可視化①③散點圖+擬合曲線

R語言之可視化①④一頁多圖(1)

R語言之可視化①⑤ROC曲線

R語言之可視化①⑥一頁多圖(2)

R語言之可視化①⑦調色板

R語言之可視化①⑧子圖組合patchwork包

R語言之可視化①⑨子ggplot2中的圖例修改

=======================

正文

自定義ggplot2圖的圖例,。這里我們要修改非數(shù)據(jù)組件,,通常通過theme()命令來完成。 此頁面受到ggplot2(?theme)幫助頁面的強烈啟發(fā)。 另外,,請訪問非常強大的ggplot2文檔以獲取更多信息。我們從mtcars數(shù)據(jù)集和默認圖例開始:

library(ggplot2)basic=ggplot(mtcars, aes(wt, mpg, colour = factor(cyl), shape = factor(vs) )) +
  geom_point()basic
image.png
  • 修改圖例中的分類名字

basic+labs(
  colour = "name1",
  shape = "name2")
image.png
  • 刪除圖例中的一類

basic + guides(shape=FALSE)
image.png

修改圖例位置

要刪除圖例,,請在theme()中使用legend.position =“none”,。 要更改其位置,但在圖表外使用bottom,,left,,right或top。 或者使用0和1之間的相對坐標放置在圖中,。

#1: no legend
basic + theme(legend.position = "none")
#2: around the plot
basic + theme(legend.position = "bottom")
#3: inside the plot
basic + theme(
    legend.position = c(.95, .95),
    legend.justification = c("right", "top"),
    legend.box.just = "right",
    legend.margin = margin(6, 6, 6, 6)
    )

一些自定義圖例的測試

# 圖例被紅框包裹
basic + theme(legend.box.background = element_rect(color="red", size=2),legend.box.margin = margin(116, 6, 6, 6))
# 圖例中指示圖標的邊框設置
basic + theme(legend.key = element_rect(fill = "white", colour = "black"))
#圖例中的字體設置
basic + theme(legend.text = element_text(size = 8, colour = "red"))
 # 設置圖例中的標題
basic + theme(legend.title = element_text(face = "bold"))

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

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多