簡體   English   中英

R-geom_line ggplot2中的手動圖例顏色

[英]R - Manual legend color in geom_line ggplot2

我正在嘗試手動更改ggplot2線圖中圖例的第一項的顏色。

我對折線圖中顯示的變量有一些觀察,就像這樣:

ggplot(tmp1, aes(x=factor(month), y=value, group=variable, colour=variable ) ) + 
       geom_line(size=1) + geom_point(size=2.5) + theme_grey(base_size = 18) +
       xlab(NULL) + ylab('%') + theme(legend.title = element_blank()) + theme(axis.text.x=element_blank()) +
       ggtitle("a) Cloud fraction") + theme(plot.title = element_text(hjust = 0))

但是,第一個變量( CRU )是我的參考,我希望將其行顯示為黑色。 我設法通過添加一個額外的帶有條件variable=='CRU' geom_line來做到這一點:

ggplot(tmp1, aes(x=factor(month), y=value, group=variable, colour=variable ) ) + 
       geom_line(size=1) + geom_point(size=2.5) + theme_grey(base_size = 18) +
       geom_line(data=subset(tmp1, variable == "CRU"), colour="black", linetype="solid", size=1) +
       geom_point(data=subset(tmp1, variable == "CRU"), colour="black", size=2.5) +
       xlab(NULL) + ylab('%') + theme(legend.title = element_blank()) + theme(axis.text.x=element_blank()) +
       ggtitle("a) Cloud fraction") + theme(plot.title = element_text(hjust = 0))

適用於生產線,但圖例保留了舊顏色。

如何更改圖例的第一個元素的顏色,以匹配新的黑線?

這是我的數據的一個示例:

library(ggplot2)

tmp1 <- structure(list(month = structure(c(1L, 2L, 3L, 4L, 5L, 6L, 7L, 
8L, 9L, 10L, 11L, 12L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 
11L, 12L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 12L, 
1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 12L, 1L, 2L, 3L, 
4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 12L, 1L, 2L, 3L, 4L, 5L, 6L, 
7L, 8L, 9L, 10L, 11L, 12L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 
10L, 11L, 12L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 
12L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 12L, 1L, 2L, 
3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 12L, 1L, 2L, 3L, 4L, 5L, 
6L, 7L, 8L, 9L, 10L, 11L, 12L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 
9L, 10L, 11L, 12L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 
12L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 12L, 1L, 2L, 
3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 12L, 1L, 2L, 3L, 4L, 5L, 
6L, 7L, 8L, 9L, 10L, 11L, 12L), .Label = c("Jan", "Feb", "Mar", 
"Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
), class = "factor"), variable = structure(c(1L, 1L, 1L, 1L, 
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 
2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 
6L, 6L, 6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L, 
10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 
11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 
12L, 12L, 12L, 12L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 
13L, 13L, 13L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 
14L, 14L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 
15L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L
), .Label = c("CRU", "CanESM2", "GFDL-ESM2M", "GISS-E2-H", "GISS-E2-R-CC", 
"GISS-E2-R", "HadGEM2-AO", "HadGEM2-CC", "IPSL-CM5A-MR", "IPSL-CM5B-LR", 
"MIROC4h", "MRI-CGCM3", "NorESM1-M", "bcc-csm1-1-m", "bcc-csm1-1", 
"inmcm4"), class = "factor"), value = c(68.9226631460789, 68.2418796877392, 
68.3045372212868, 66.5727907036073, 64.278360290491, 60.6452267972856, 
56.4079999829923, 57.4384828307567, 60.874295882443, 63.70427487797, 
65.9934520468731, 68.9723871966257, 69.0959015590216, 68.6126351492122, 
65.9106136896166, 65.790169283913, 64.6320994816801, 63.894111784301, 
62.0459530253135, 60.0455773681386, 59.4195693791228, 59.8531302282566, 
62.8877658601921, 66.4625078340445, 63.4659654507164, 64.5466810117518, 
63.6412932878715, 61.5786848043378, 60.6491980933614, 63.5160886052168, 
62.739218138279, 60.8826348052995, 60.1196738813257, 59.0451443027396, 
58.9044684656519, 61.5033887899156, 62.442928703121, 61.9933297554931, 
61.686560285787, 62.1675956585161, 63.0625380934021, 63.3192922622326, 
62.6727899590586, 60.9706714311941, 59.4656895840826, 59.8689092461429, 
60.7585523645951, 62.2374164636759, 62.2586495696979, 62.3005886556949, 
62.0719314334763, 61.7786313583016, 62.1037020616999, 62.5919637033876, 
60.7746642298107, 58.7307471416832, 57.6602849809809, 57.3379551651851, 
59.8210398283061, 61.5997238276034, 62.1190176575675, 62.2214930174241, 
61.607539296931, 61.836536870373, 61.8298589429815, 62.0478835210295, 
60.8165122782774, 59.224498365607, 57.5387307267022, 56.8641846144649, 
59.6779581588162, 61.5822371331742, 56.9625864272884, 55.0519081266715, 
53.9161532646461, 52.0847886852487, 54.1855963059705, 54.1565901942167, 
53.8164314129289, 53.3013959169719, 52.1283494730607, 49.9814907883562, 
51.0053330490513, 54.1758812796363, 54.1947459143536, 53.2985061657513, 
51.5351727215781, 51.2131541342776, 53.040182168441, 53.4657505459587, 
52.8257974728027, 52.8523832284788, 51.2527233914323, 48.0999294191007, 
48.3915726340961, 50.9305288780026, 65.3647375158419, 64.6894843930494, 
62.2700707798592, 60.2848148985731, 59.0797813854392, 58.6641353922813, 
60.36671822738, 61.0883458866571, 60.3963355506111, 60.989444946264, 
62.1570976843054, 64.0549504714623, 63.043822206253, 61.5388900651697, 
61.0125502971802, 60.4999006674972, 60.9554692113674, 61.2665703834057, 
61.1470225339614, 61.4827838311531, 60.0397138517742, 61.6503963603034, 
62.7421837830534, 63.9911949044232, 55.7117557057576, 55.0687784028633, 
51.7447044604762, 50.5160095376821, 51.7744811245234, 52.6710116909617, 
52.9126480516047, 51.6347065362984, 50.6773480024225, 48.8928054774924, 
50.3505731163001, 53.7488684714513, 61.558109087334, 61.6673093977654, 
61.008465555097, 58.5478578294864, 57.4119260976748, 57.9275733769477, 
56.9129774651439, 55.6494927089111, 52.0222406797903, 51.9215916366208, 
53.4679949695072, 58.2128251869788, 64.7955701998493, 62.8319013929061, 
60.8391061131818, 56.1759467734789, 55.4331550199683, 55.8437923896573, 
54.998540828777, 54.7840203124691, 54.3853750266133, 52.7590435522892, 
56.1409799671355, 62.0047140533332, 57.5185465474672, 57.2532289998115, 
55.9911913829976, 54.6479285609432, 53.1659722964534, 53.3609799276622, 
51.321452599498, 49.6933914680193, 48.6718229103421, 49.5393207890844, 
52.8096091918065, 56.1667672797739, 60.7380412023987, 60.1791897430251, 
58.7798069796932, 58.061108119255, 59.7770862278418, 60.2070273632675, 
59.074898814382, 55.5571990297011, 53.8564792650491, 54.0753885029223, 
56.2369958393563, 58.9062125901571, 70.7538119957697, 69.4271857400385, 
67.3954189057409, 66.9262104442679, 67.1558044757422, 65.8848885390536, 
65.3092556552615, 64.3799468889004, 64.9999333535186, 65.6493831700943, 
69.2646980549075, 70.6342115226731)), row.names = c(NA, -192L
), .Names = c("month", "variable", "value"), class = "data.frame")

無需拆分數據並繪制兩個geom_line ,您只需提供自定義調色板,即可將CRU映射為黑色。

如果要保留其他變量的默認顏色,則首先需要定義一個小輔助函數以ggplot2的方式檢索它們。

gg_color_hue <- function(n) {
  hues = seq(15, 375, length=n+1)
  hcl(h=hues, l=65, c=100)[1:n]
}

然后創建一個自定義調色板矢量,將標准調色板和黑色組合在一起。 由於CRU是因子變量的第一級(總共16級),因此這很簡單

custom_palette <- c("#000000", gg_color_hue(15))

接下來,將產生您想要的圖:

ggplot(tmp1, aes(x=factor(month), y=value, group=variable, colour=variable)) + 
  geom_line(size=1) + 
  geom_point(size=2.5) + 
  scale_colour_manual(values=custom_palette) +
  theme_grey(base_size = 18) +
  xlab(NULL) + ylab('%') + 
  theme(legend.title = element_blank()) + 
  theme(axis.text.x=element_blank()) +
  ggtitle("a) Cloud fraction") + 
  theme(plot.title = element_text(hjust = 0))

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM