I am plotting a geom_path object and a geom_text object in the same ggplot but am running into the following problem:
#load the data frames
df1 <- data.frame(x=c(32, 42, 52), y=c(15, 20, 25), grp=c(1, 2, 2), site=c("A", "B", "C"))
df1$grp = factor(df1$grp)
colnames(df1)[3] = "Group"
df2 <- data.frame(x=c(32, 42, 52), y=c(15, 20, 25))
#create basic plot with site name coloured by group
p = ggplot(df1, aes(x=x, y=y, label=site))
p = p + geom_text(aes(colour=factor(Group)), size=4)
p = p + coord_fixed()
#I try adding a path
p = p + geom_path(data=df2, aes(x=x, y=y))
But get the error Error in eval(expr, envir, enclos) : object 'site' not found
Any ideas?
ggplotcall is expected in every subsequentgeom_. I suppose I should add that the solution is either to movelabel = siteor unmap it ingeom_pathby setting it to NULL.