-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathroute_rolling_diff.Rd
47 lines (45 loc) · 1.6 KB
/
route_rolling_diff.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/route_funs.R
\name{route_rolling_diff}
\alias{route_rolling_diff}
\title{Return smoothed differences between vector values}
\usage{
route_rolling_diff(x, lag = 1, abs = TRUE)
}
\arguments{
\item{x}{Numeric vector to smooth}
\item{lag}{The window size of the smoothing function. The default, 3, will take
the mean of values before, after and including each value.}
\item{abs}{Should the absolute (always positive) change be returned? True by default}
}
\description{
This function calculates a simple rolling mean in base R. It is useful for
calculating route characteristics such as mean distances of segments and
changes in gradient.
}
\examples{
r1 <- od_data_routes[od_data_routes$route_number == 2, ]
y <- r1$elevations
route_rolling_diff(y, lag = 1)
route_rolling_diff(y, lag = 2)
r1$elevations_diff_1 <- route_rolling_diff(y, lag = 1)
r1$elevations_diff_n <- route_rolling_diff(y, lag = 1, abs = FALSE)
d <- cumsum(r1$distances) - r1$distances / 2
diff_above_mean <- r1$elevations_diff_1 + mean(y)
diff_above_mean_n <- r1$elevations_diff_n + mean(y)
plot(c(0, cumsum(r1$distances)), c(y, y[length(y)]), ylim = c(80, 130))
lines(c(0, cumsum(r1$distances)), c(y, y[length(y)]))
points(d, diff_above_mean)
points(d, diff_above_mean_n, col = "blue")
abline(h = mean(y))
}
\seealso{
Other route_funs:
\code{\link{route_average_gradient}()},
\code{\link{route_rolling_average}()},
\code{\link{route_rolling_gradient}()},
\code{\link{route_sequential_dist}()},
\code{\link{route_slope_matrix}()},
\code{\link{route_slope_vector}()}
}
\concept{route_funs}