ComeçarComece de graça

Row timings

Similar to the previous example, the objects mat and df are a matrix and a data frame, respectively. Using microbenchmark(), how long does it take to select the first row from each of these objects?

To make the comparison fair, just use mat[1, ] and df[1, ].

Este exercício faz parte do curso

Writing Efficient R Code

Ver curso

Instruções do exercício

The microbenchmark package is already loaded in your workspace.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Which is faster, mat[1, ] or df[1, ]? 
microbenchmark(___, ___)
Editar e executar o código