Skip to content

Instantly share code, notes, and snippets.

@sureshgorakala
Last active December 5, 2015 13:57
Show Gist options
  • Save sureshgorakala/0da95b4412ee63a713ad to your computer and use it in GitHub Desktop.
Save sureshgorakala/0da95b4412ee63a713ad to your computer and use it in GitHub Desktop.
BloggerGist
#mean of the rows
apply(m, 1, mean)
# mean of the columns
apply(m, 2, mean)
# divide all values by 2
apply(m, 1:2, function(x) x/2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment