Skip to content
Back to formatted view

Raw Message

Message-ID: <428E8A62-AC8D-4318-AF61-7795F8FD8B59@comcast.net>
Date: 2013-11-20T00:12:09Z
From: David Winsemius
Subject: Help with removing extra legend elements in ggplot
In-Reply-To: <CALx9ERVtXTAqeU0LpeSy5Gomew8Lfz+UkJ38pjhJ3d1rc0caiw@mail.gmail.com>

On Nov 19, 2013, at 3:44 PM, Matthew Van Scoyoc wrote:

> I can't get the fine tuning right with my legend. I get an extra legend
> element "10" which is the point size in my plot. Can someone help me get rid
> of this extra element? Additionally I would also like to reduce the size of
> the legend.
> 
> If you want to reproduce my figure you can  download my data in csv format
> here
> <https://github.com/scoyoc/EcoSiteDelineation/blob/master/VegNMDS_scores.csv
>> 
> .
> 
> Here is my code...
> 
>> veg.nmds.sc = read.csv("VegNMDS_scores.csv", header = T)
> 
>> nmds.fig = ggplot(data = veg.nmds.sc, aes(x = NMDS1, y = NMDS2))
>> nmds.fig + geom_point(aes(color = VegType, shape = VegType, size = 10)) +
>> scale_colour_manual(name = "Vegetation Type",
>>                     values = c("blue", "magenta", "gray50", "red",
>> "cyan3",
>>                                "green4", "gold")) +
>> scale_shape_manual(name = "Vegetation Type", values = c(15, 16, 17, 18,
>> 15, 16, 17)) +
>> theme_bw() +
>> theme(panel.background = element_blank(), panel.grid.major =
>> element_blank(),
>>       panel.grid.minor = element_blank(),
>>       legend.key = element_rect(color = "white")
>>       )
> 
> I have been messing around with
>> theme(..., legend.key.size = unit(1, "cm"))
> but I keep getting the error "could not find function unit". I'm not sure
> why, isn't unit supposed to be part of the legend.key argument?

Try this workaround to what sounds like a bug:

library(grid)

# then repeat the call.

-- 

David Winsemius
Alameda, CA, USA