Skip to content
Prev 163651 / 398506 Next

Null values In R.

paul murima wrote:
As Daniel suggested, it is always best to use the function's parameter to
handle NULLs. In other cases, it could help to do 

a <- na.omit(a)

but be careful: this may throw away to many rows when you have more than 2
columns.

Dieter