CommencerCommencer gratuitement

Creating an initial plot

In the previous lesson, we looked at the usefulness of different learning platforms for data science. We created a faceted plot, with one small plot for each platform. Let's try making and refining a plot that has all the data in one graph.

Cet exercice fait partie du cours

Categorical Data in the Tidyverse

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

learning_platform_usefulness %>%
    # If usefulness is "Not Useful", make 0, else 1 
    mutate(usefulness = ___) 
Modifier et exécuter le code