library(GGally)
f=data.frame(x=sin(2*pi*(1:100)/100), y=cos(2*pi*(1:100)/100))
ggpairs(f)
A time series can be plot like the above with the time axis collapsed (lower left). But it loses the directional information on this graph.
Is there an easy way to make such a pair graph with arrows added appropriately so that it can be seen where the flow goes?
Good solutions in lattice or other graphic systems are also welcome.
EDIT: I need the solution in the context of a pair plot instead of just a single scatter plot.