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

Instruction

In this part of the course, we'll introduce you to the tibble. Tidyverse uses the tibble as a new version of the data frame. It's similar to R's base data frame, and it's constructed like one, too. But tibbles are a little easier to use.

Before we start working on any tibbles, let's get familiar with the data. Our data set contains employee, customer, and order information from an online shop. Let's start by looking at it.

Exercise

The shop data is stored in a data frame named df_orders. Display the information of the data frame in the console.

Stuck? Here's a hint!

Enter the name of the data frame in the console and execute it.