Skip to content

Instantly share code, notes, and snippets.

@mad4j
Created September 28, 2013 16:02
Show Gist options
  • Save mad4j/6743548 to your computer and use it in GitHub Desktop.
Save mad4j/6743548 to your computer and use it in GitHub Desktop.
simple mobile average in R
ma <- function(x,n=5){filter(x,rep(1/n,n), sides=2)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment