in Data Handling by (391 points)
For a given matrix mat, how do you increment every element of the matrix by 3 and return a vector. (I) sapply(mat, function(x,y) sum(x)+y,y=3) (II) sapply(mat, function(x) sum(x)+3)

1 Answer

0 votes
by (391 points)

answer is I & II

Related questions

0 votes
asked Jun 7, 2019 in Data Handling using R by tempuser (391 points)
...