我想使用 ggplot2 用意大利面条图可视化单个纵向数据。
我的数据如下所示:
ID task response timepoint
1 naming 15 1
1 naming 28 2
2 naming 8 1
2 naming 10 2
除了“响应”之外的所有变量都是因素。
我运行了这段代码,得到了一个带有线条的图,它连接了一些东西,但不是时间点 1 和时间点 2 的数据点。
datal.diff %>%
ggplot(aes(timepoint,response, color = ID, group=1)) +
facet_grid(.~ task) +
geom_point() +
geom_line()
感谢您的任何意见和想法!