Login
Remember
Register
Ask a Question
What will the following lines of code return x <- matrix(1:18, 6, 3) apply(x, 2, sum)
0
votes
asked
May 27, 2019
in
Data Handling
by
tempuser
What will the following lines of code return
x <- matrix(1:18, 6, 3)
apply(x, 2, sum)
#datahandling
DataHandling-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 27, 2019
by
tempuser
vector of 3 elements
...