我正在尝试使用directlabels包来标记我在一个简单图中的两条线(我正在使用ggplot2)
我的代码如下:
# 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')
但是我收到以下错误消息:
Error in direct.label.ggplot(p, "last.points") :
Need colour aesthetic to direct label.
我尝试向direct.label()
函数添加几个参数,但我不明白应该使用什么美学参数。