View source: R/Analyses_functions_2.R
mean_streak | R Documentation |
Computes the mean time span of the increasing/decreasing streaks for the provided time interval or its sub-interval.
mean_streak(X, direction = "increasing", subI = NULL, plot = FALSE)
X |
Data frame where the first column is a numeric time sequence |
direction |
A character string which specifies the direction of
the streak: |
subI |
Time sub-interval is a vector, where the lower bound is the first element and the upper bound is the second. Optional: If provided mean time span of the sub-interval is returned, otherwise the whole time interval is considered. |
plot |
Logical: If |
Mean time span of the increasing/decreasing streaks.
long_streak
t <- seq(0, 1 ,length = 100)
TS <- data.frame("t" = t,"X(t)" = rnorm(100))
mean_streak(TS, direction = 'decreasing', subI = c(0.2,0.8), plot = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.