R arrow/direction 图来自 Data.frame

R arrow/direction plot from Data.frame

我正在尝试不同的情节。我有一个看起来像这样的 data.frame:

Date/Time               X       Y
22.06.2016 08:44    12.033  6.440
22.06.2016 08:44    12.062  6.428
22.06.2016 08:45    12.189  6.538
22.06.2016 08:45    12.084  6.455
22.06.2016 08:46    12.069  6.443
22.06.2016 08:46    12.070  6.301
22.06.2016 08:47    12.025  6.298

我设法在自定义背景上制作了一张与 X/Y 坐标密度相关的热图,例如 "many records where made here, but less here"。现在我想尝试绘制某种 walkways/trails 从 x0,y0 到 x1,y1 然后 x1,y1 到 x2,y2 等等(在一个完美的世界中,它应该看起来像一条蛇 "ground").考虑到,x0y0 和 x1y1 之间只有很小的距离,这看起来有点奇怪,但我还是想尝试一下。有人可以给我任何提示(甚至是一个例子)吗?我用 arrows() 尝试了一些东西,但结果并不如我所愿,或者说根本不起作用。非常感谢任何 help/hint

arrows 对我有用,尽管这是一条奇怪的道路。

plot(df[,2:3])
arrows(df[-nrow(df), 2], df[-nrow(df), 3], 
    df[-1, 2], df[-1, 3], length=0.1)