--- title: Farthest airport from New York City week: 4 type: Case Study subtitle: Joining Relational Data reading: - R4DS [Chapter 13 - Relational Data](http://r4ds.had.co.nz/relational-data.html){target='blank'} tasks: - Join two datasets using a common column - Answer a question that requires understanding how multiple tables are related - Save your script as a .R or .Rmd in your course repository --- # Reading - R4DS [Chapter 13 - Relational Data](http://r4ds.had.co.nz/relational-data.html){target='blank'} # Background In this exercise you will use various data wrangling tools to answer questions from the data held in separate tables. We'll use the data in the `nycflights13` package which has relationships between the tables as follows.  # Objective > What is the full name (not the three letter code) of the destination airport farthest from any of the NYC airports in the `flights` table? # Tasks - Join two datasets using a common column - Answer a question that requires understanding how multiple tables are related - Save your script as a .R or .Rmd in your course repository You will need to load the necessary packages ```r library(tidyverse) library(nycflights13) ``` [ Download starter R script (if desired)](scripts/CS_04_nocomments.R){target="_blank"} There are several ways to do this using at least two different joins. I found two solutions that use 5 or 6 functions separated by pipes (`%>%`). Can you do it in fewer?