Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Getting started with tibbles
Creating tibbles
Subsetting
Summary
17. Exercise 1

Instruction

A data frame named df_planets is stored in memory. It contains information about the planets in our solar system.

Exercise

Convert the df_planets data frame to a tibble and assign it to the variable planets.

Stuck? Here's a hint!

Use as_tibble() and type:

planets <- as_tibble(df_planets)