Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. df <- data.frame(a=runif(15000000), b = rnorm(15000000))
  2. ggplot(data=df, aes(x=a, y=b)) + geom_density2d()
  3.  
  4. Error : cannot allocate vector of size 11.2 Gb
  5. In addition: Warning messages:
  6. 1: In outer(gx, x, "-") :
  7. Reached total allocation of 16365Mb: see help(memory.size)
  8. 2: In outer(gx, x, "-") :
  9. Reached total allocation of 16365Mb: see help(memory.size)
  10. 3: In outer(gx, x, "-") :
  11. Reached total allocation of 16365Mb: see help(memory.size)
  12. 4: In outer(gx, x, "-") :
  13. Reached total allocation of 16365Mb: see help(memory.size)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement