filter <- apply(expressionMatrix, 2, function (x) (colIQRs(x, na.rm = TRUE) < 1.6))
"Argument x is of class numeric, should be a matrix" error was thrown. How to cope with that? I think logically this code is correct: I remove all columns, whose IQR values is less than 1.6.
How to code this technically?