LoslegenKostenlos starten

Data frames and matrices - column selection

All values in a matrix must have the same data type, which has efficiency implications when selecting rows and columns.

Suppose we have two objects, mat (a matrix) and df (a data frame).

Diese Übung ist Teil des Kurses

<Kurs>Writing Efficient R Code</Kurs>
Kurs ansehen

Übungsanweisungen

Using the microbenchmark() function, how long does it take to select the first column from each of these object? In other words, which is faster mat[, 1] or df[, 1]?

Interaktive praktische Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Which is faster, mat[, 1] or df[, 1]? 
microbenchmark(___, ___)
Code bearbeiten und ausführen