Mwavu Kennedy @mwavu.com · Oct 31

well, copy & modify :) on a serious note though, `[` seems to make a deep copy: x <- c(5, 7, 11) y <- x[]

2 likes 1 replies

?

Replies

Mwavu Kennedy · Oct 31

apparently, `c()` does too! x <- c(5, 7, 11) y <- c(x) when will i learn R?