mre | R Documentation |
Running Or Total Mean Raw Error
mre(x, y = NULL, running = FALSE)
x |
|
y |
numeric() |
running |
|
numeric()
# Without NA
mre(1:10, 0:9, FALSE)
mre(1:10, 0:9, TRUE)
mre(matrix(c(1:10, 0:9), ncol = 2), running = FALSE)
mre(matrix(c(1:10, 0:9), ncol = 2), running = TRUE)
# With NA
mre(matrix(c(1:10, NA, 1:9), ncol = 2), running = FALSE)
mre(matrix(c(1:10, NA, 1:9), ncol = 2), running = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.