You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
quick question,
in exercise Q2, section 1.1, why don't i get the same address if I pass the list of mean function as argument of lapply/map?
in other words, if i run lapply(list(mean, base::mean, get("mean"), evalq(mean), match.fun("mean")), lobstr::obj_addr)
the object address is not the same.
[[1]]
[1] "0x2479064a378"
[[2]]
[1] "0x2479064cf58"
[[3]]
[1] "0x2479064bc18"
[[4]]
[1] "0x24790652818"
[[5]]
[1] "0x247906514d8"
The text was updated successfully, but these errors were encountered:
quick question,
in exercise Q2, section 1.1, why don't i get the same address if I pass the list of mean function as argument of lapply/map?
in other words, if i run
lapply(list(mean, base::mean, get("mean"), evalq(mean), match.fun("mean")), lobstr::obj_addr)
the object address is not the same.
[[1]]
[1] "0x2479064a378"
[[2]]
[1] "0x2479064cf58"
[[3]]
[1] "0x2479064bc18"
[[4]]
[1] "0x24790652818"
[[5]]
[1] "0x247906514d8"
The text was updated successfully, but these errors were encountered: