I'm trying use the directlabels package to label two lines I have in a simple plot (I'm using ggplot2)
My code is as follows:
# libraries
library(ggplot2)
library(directlabels)
# Variables
A = array(1000,100)
F = seq(length=100, from=0, by=10)
f = array(5,100)
# make data frame 1
df <- data.frame(X = F * f/A, Y = F/A)
# plot line 1
p = ggplot(df, aes(x=X,y=Y))
p = p + geom_line(colour="#56B4E9")
# make data frame 2
df1 <- data.frame(X = F * f * 2/A, Y = F/A)
# plot line 2
p = p + geom_line(aes(x=X,y=Y), data=df1, colour="#56B4E9")
# label line
direct.label(p, 'last.points')
However I get the following error message:
Error in direct.label.ggplot(p, "last.points") :
Need colour aesthetic to direct label.
I've tried adding several arguments to the direct.label()
function, but I don't understand what aesthetic argument should be used.