2017-12-10 21 views
1

次のプロットの凡例は表示されません。私は2つの伝説のエントリが欲しいです。 1つは紫、もう1つは緑です。ggplot2 geom_area/geom_ribbonの凡例が表示されない

library(ggplot2) 

index <- c(1,2,3,4,5) 
size <- c(10,20,25,40,45) 
df <- data.frame(index, size) 

p <- ggplot(df, aes(x=index, y=size, fill=size)) 

p + 
    geom_ribbon(aes(fill="dfg", ymin=size, ymax=df$size[nrow(df)]), fill="#BEAED4", alpha=0.2, color="#BEAED4") + 
    geom_area(aes(fill="abc"), fill="#84CA72", alpha=0.2, colour="#84CA72") + 
    scale_fill_manual(name="skdjf", breaks=c("abc", "dfg"), values=c("red", "blue"), labels = c("cat1", "cat2")) 

enter image description here

PS:私は多くのものを試してみましたが、それは仕事を得るように見えることはできません。

答えて

2

あなたは

library(tidyverse) 

data.frame(index = c(1,2,3,4,5), size = c(10,20,25,40,45)) %>% 
ggplot(aes(index, size)) + 
    geom_ribbon(aes(ymin = min(size), ymax = max(size), fill = 'dfg', color = 'dfg'), alpha = 0.2) + 
    geom_area(aes(fill = 'abc', color = 'abc'), alpha = 0.2) + 
    scale_fill_manual(name = 'a name', values = c("#BEAED4","#84CA72")) + 
    scale_color_manual(name = 'a name', values = c("#BEAED4","#84CA72")) 
これを試してみてください fill美的

の内と外を割り当てます

関連する問題