x <- as.bigz(matrix(1:12,3))
apply(x,1,min)
apply(x,2,max)
x <- as.bigq(x ^ 3, d = (x + 3)^2)
apply(x,1, min)
apply(x,2, sum)
## now use the "..." to pass na.rm=TRUE :
x[2,3] <- NA
apply(x,1, sum)
apply(x,1, sum, na.rm = TRUE)
Run the code above in your browser using DataLab