You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the first part of solution, where you got planes with 100 at least, you need to filter like: filter(!is.na(air_time)) , because filter(!is.na(tailnum)) count flights, that scheduled but didn't completed.
At the first part of solution, where you got planes with 100 at least, you need to filter like:
filter(!is.na(air_time))
, becausefilter(!is.na(tailnum))
count flights, that scheduled but didn't completed.Page link: https://jrnold.github.io/r4ds-exercise-solutions/relational-data.html#filtering-joins
The text was updated successfully, but these errors were encountered: