This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Print out a summary with variables min_dist and max_dist | |
summarize(hflights, min_dist = min(Distance), max_dist = max(Distance)) | |
# Print out a summary with variable max_div | |
summarize(filter(hflights, Diverted == 1), max_div = max(Distance)) | |
# Remove rows that have NA ArrDelay: temp1 | |
temp1 <- filter(hflights, !is.na(ArrDelay)) | |
# Generate summary about ArrDelay column of temp1 | |
summarise(temp1, earliest = min(ArrDelay), average = mean(ArrDelay), | |
latest = max(ArrDelay), sd = sd(ArrDelay)) | |
# Keep rows that have no NA TaxiIn and no NA TaxiOut: temp2 | |
temp2 <- filter(hflights, !is.na(TaxiIn), !is.na(TaxiOut)) | |
# Print the maximum taxiing difference of temp2 with summarise() | |
summarise(temp2, max_taxi_diff = max(abs(TaxiIn - TaxiOut))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment