Displaying 1 result from an estimated 1 matches for "viewrawandprocess".
Did you mean:
viewrawandprocessed
2005 Aug 29
1
interactive time series plot
Hi,
I've written the following function to display small windows of a time
series (and a processed version of it) with mouse clicks used to move the
window forward.
ViewRawAndProcessed <- function(raw, processed, width=1000)
{
len <- length(raw)
n <- round(len/width)
for (i in 1:n)
{
plot(raw[((i-1)*width):(i*width)], type="s")
lines(processed[((i-1)*width):(i*width)], type="s", col="red&qu...