Explore Our First Dataset
Explore the structure and contents of a large flight dataset in R using data frames. Understand how to load packages, view data summaries, and recognize key variables in the nycflights13 dataset to start your data analysis journey.
We'll cover the following...
We'll cover the following...
Let’s put everything we’ve learned so far into practice and start exploring some real data! Data comes to us in a variety of formats, from pictures to text to numbers. This is probably the most common way data is collected and saved in many fields. These spreadsheet-type datasets are called data frames in R. We’ll focus on working with data saved as data frames throughout this course.
Let’s first load all the ...