MulaiMulai sekarang secara gratis

How many cores does this machine have?

The parallel package has a function detectCores() that determines the number of cores in a machine.

How many cores does this machine have?

Latihan ini adalah bagian dari kursus

Writing Efficient R Code

Lihat Kursus

Petunjuk latihan

  • Load the parallel package.
  • Using the detectCores() function, store the number of cores in an object called no_of_cores.
  • Print no_of_cores.

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Load the parallel package
___

# Store the number of cores in the object no_of_cores
no_of_cores <- ___

# Print no_of_cores
___
Edit dan Jalankan Kode