LoslegenKostenlos loslegen

Simple sampling with base-R

While dplyr provides great tools for sampling data frames, if you want to work with vectors you can use base-R.

Let's turn it up to eleven and look at the loudness property of each song.

spotify_population is available.

Diese Übung ist Teil des Kurses

Sampling in R

Kurs anzeigen

Interaktive Übung

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

# Get the loudness column of spotify_population
loudness_pop <- ___

# Sample 100 values of loudness_pop
loudness_samp <- ___

# See the results
loudness_samp
Code bearbeiten und ausführen