I there any way to avoid copy-on-modify for in-place modifications of matrices in R
?
I am trying to copy a smaller matrix to a slice of larger matrix as follows.
library(data.table)
y <- matrix(c(11,21,31,12,22,32),nrow=3,ncol=2)
address(y)
[1] "08429190"
y[2:3,] <- matrix(c(1,1,8,12),nrow=2)
address(y)
[1] "0E033D28"
I get the same behaviour as the OP using R 3.2.0 running within RStudio 0.99.441 on Windows 8.1 and using
pryr::address
. The issue is RStudio has a reference to y for its Environment pane. As often the case, Hadley Wickham has some excellent documentation of this.I don't think there's any way around this for matrices in the global environment other than not using RStudio. I've tried a couple of other things. Matrices within a function are fine:
Calling
fn()
should show that the address is unchanged.However, creating y as a member of a list or environment which are in the global environment doesn't prevent the copy on write (e.g.
x <- new.env(); x$y <- matrix(...)
).Per Is there any way to disable environment pane in RStudio? there doesn't seem to be any way of disabling the environment pane.
data.table
still manages to avoid unncessarily copies. Try: