Skip to content

Instantly share code, notes, and snippets.

@watermouth
Created July 31, 2019 06:13
Show Gist options
  • Select an option

  • Save watermouth/30a179224702bfd9016cbd7a7d116cf8 to your computer and use it in GitHub Desktop.

Select an option

Save watermouth/30a179224702bfd9016cbd7a7d116cf8 to your computer and use it in GitHub Desktop.
R メモリ使用量調査用便利関数
# utility functions
Msize <- function(x)
as.integer(object.size(x)) / 1e6
listMsize <-
function(v)
sort(sapply(v, function(x)
Msize(get(x))), decreasing = T)
# listMsize(ls()) などとする
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment