错误:在ggplot2中将离散值提供给连续刻度

时间:2019-04-15 16:57:25

标签: r ggplot2

我试图用ggplot2绘制时间序列线,然后根据另一列中的某些条件标记一些点。但是得到这个错误。错误:离散值提供给连续刻度

ggplot(data=df, aes(x=Date, y=value)) +
 scale_x_discrete() +
 geom_line(group = "series", color = "blue", size = .8) +
 geom_point(data=df[df[, "status"] == "TRUE",], aes(x=Date, y=status), fill="red", size=1)

0 个答案:

没有答案