Get startedGet started for free

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.

This exercise is part of the course

Categorical Data in the Tidyverse

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

learning_platform_usefulness %>%
    # If usefulness is "Not Useful", make 0, else 1 
    mutate(usefulness = ___) 
Edit and Run Code