MulaiMulai sekarang secara gratis

Fast reading from disk

In addition to having intelligent defaults, fread() is super fast! In this exercise, you will use the system.time() function from base R to compare the time it takes to read the batrips.csv file using read.csv() and fread(). All you need to do is pass an expression to system.time(). For example, if you want to calculate how long it takes to import a file called sample.csv, you can use:

system.time(read.csv("sample.csv"))
   user  system elapsed 
  3.495   0.040   3.547

Generally, you want to consider user time when measuring execution time. So in this case, it took 3.495 seconds to import the file sample.csv.

Latihan ini adalah bagian dari kursus

Data Manipulation with data.table in R

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Use read.csv() to import batrips
system.time(___("batrips.csv"))
Edit dan Jalankan Kode