Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two bar charts and a line in the same ggplot2 chart (all overlapping), I want to show a legend that explains what each color bar + the line means. For some reason I cannot get this to work...

ggplot(funding, aes(y=factor(total), x=factor(date)))+
    geom_bar()+geom_bar(aes(y=factor(uniek)), fill=c("#00CCCC"))+
    geom_line(data=rollingmedian, aes(x=as.numeric(V1), y=V2), colour = "#332277", size=1.5)+
    ylab("Ammount of Lessons Learned")+
    xlab("Time in Years")+
    opts(title="Funding & Costs Lessons Learned")+
    opts(plot.title=theme_text(size=14,face="bold"))

the corresponding data in funding (first 5+header shown) [total set ranges from 1994-2012]

    date    uniek   total
1   1994    1       1
2   1995    0       0
3   1996    1       1
4   1997    1       3
5   1998    0       0   

the corresponding data in rollingmedian (first 5+header shown)

    V1          V2
1   1994-07-06  NA
2   1995-07-06  1
3   1996-07-06  1
4   1997-07-06  1
5   1998-07-06  0

What I want the legend to show is a dark-grey inset for total, a greenish inset for uniek and a blue inset for the rollingmedian line. (the grey is only visible at 1997 which makes it important as there are more total than uniek in that year)

So far Ive been able to get the legend to output different colours for the 5 numbers on the y-axis. I've triend both fill/colour options as the +scale_fill/colour_hue option, but no luck :-(

Any help is appreciated!

ps. first post after months of watching/learning...

share|improve this question
1  
Legends will (in general) only work if you map a variable to an aesthetic. In your example neither fill nor colour are mapped to variables. You will probably want to melt your data frame funding first, and then map the resulting variable to fill...? But I can't help more than that as I don't have a reproducible copy of your data/code. – joran Jul 7 '12 at 0:49

migrated from stats.stackexchange.com Jul 6 '12 at 19:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.