Plots tracks contained in a "tracks" object into a twodimensional space pallelel to the data's axes.
# S3 method for tracks
plot(
x,
dims = c("x", "y"),
add = F,
col = order(names(x)),
pch.start = 1,
pch.end = NULL,
cex = 0.5,
...
)
None
the tracks to be plotted.
a vector giving the dimensions of the track data that shall be
plotted, e.g. c('x','y')
for the \(x\) and \(y\) dimension.
boolean value indicating whether the tracks are to be added to the current plot.
a specification of the color(s) to be used. This can be a vector
of size length(x)
, where each entry specififes the color for the
corresponding track.
point symbol with which to label the first position of the track
(see points
).
point symbol with which to label the last position of the track
point size for positions on the tracks.
additional parameters (e.g. xlab, ylab).
to be passed to plot
(for add=FALSE
) or points
(for add=TRUE
),
respectively.
One dimension of the data (by default \(y\)) is plotted against
another (by default \(x\)). The dimesions can be chosen by means of the
parameter dims
and the axes can be labeled accordingly with the aid
of xlab
and ylab
. The color can be set through col
.
If the tracks should be added to an existing plot, add
is to be set
to TRUE
.
plot3d