I intend to work with some large vectors in R.
memory.limit
currently gives:
memory.limit()
[1] 4095
But I think that this is the default for 32bit R, whilst my installation is 64bit.
What should my memory.limit()
be set to in 64bit R?
I intend to work with some large vectors in R.
memory.limit
currently gives:
memory.limit()
[1] 4095
But I think that this is the default for 32bit R, whilst my installation is 64bit.
What should my memory.limit()
be set to in 64bit R?
Copyright © 2021 Jogjafile Inc.
memory.limit
is used to limit memory usage. It can be set to any value between 0 and the amount of available ram on the machine.The "correct" value for working with large data sets is the full amount of ram available. So, for example, with 4GB of ram, 4095 is the appropriate value:
memory.limit(4095)
.