I have spent hours looking in the documentation and on StackOverflow, but no solution seems to solve my problem. When using ggplot
I can't get the right text in the legend, even though it's in my dataframe. I have tried scale_colour_manual
, scale_fill_manual
with different values for labels=
such as c("T999", "T888")", "cols"
.
Here is my code:
T999 <- runif(10, 100, 200)
T888 <- runif(10, 200, 300)
TY <- runif(10, 20, 30)
df <- data.frame(T999, T888, TY)
ggplot(data = df, aes(x=T999, y=TY, pointtype="T999")) +
geom_point(size = 15, colour = "darkblue") +
geom_point(data = df, aes(x=T888, y=TY), colour = 'red', size = 10 ) +
theme(axis.text.x = element_text(size = 20), axis.title.x =element_text(size = 20), axis.text.y = element_text(size = 20)) +
xlab("Txxx") + ylab("TY [°C]") + labs(title="temperatures", size = 15) +
scale_colour_manual(labels = c("T999", "T888"), values = c("darkblue", "red")) + theme(legend.position="topright")
Help would be very appreciated!
ggplot
is most happy with (long, not wide), and to get a feeling for the difference between mapping anaes
thetic to a variable in theaes
call, vs. setting it outsideaes
. You need tomelt
your data to a long format, and mapcolour
(orfill
) inaes
to the relevant variable. – Henrik