What is the difference between the functions apply , sapply , mapply , lapply , vapply , rapply , tapply , replicate , aggregate , by and correlates no R?
When and how to use each o...
I would like to detect and replace values above 6 in just a few columns of a data.frame by NA. I did the syntax like this but it is giving error ... Could anyone give me a help? Thanks!
data <- apply(dados[14:128], 2, function(x) {x[x >...
Edited - As pointed out in Marcos Moraes' comment, I tried to reinvent the wheel of an available resource in the base layer of R, since dput is capable of producing the same effect. Our failure. :( The central question of my question still rema...