Fill This Form To Receive Instant Help
Homework answers / question archive / Please write the following code in R programing language## Control flow: Airport statistics If your code uses any libraries, load them here
Please write the following code in R programing language## Control flow: Airport statistics If your code uses any libraries, load them here.(Dataset: "US Airport Statistics," submitted by Larry Winner, University of Florida. Dataset obtained from the Journal of Statistics Education (http://www.amstat.org/publications/jse). Accessed 3 June 2015. Used by permission of author.) b. **Use control flow** to print a list of airports at which the number of scheduled departures was less than the number of departures performed.
- The point of this assignment is to demonstrate your understanding of control flow, so please use control flow to solve this problem.
```{r}
``` c. **Use control flow** to find the average (mean) number of passengers on flights from all the airports in part b.
- Your result should be 1 number: The total number of passengers from all of the specified airports, divided by the total number of performed departures from all of the specified airports.
- The point of this assignment is to demonstrate your understanding of control flow, so please use control flow to solve this problem.
```{r}
```
Parsed with column specification:
cols(
Airport = col_character(),
City = col_character(),
`Scheduled Departures` = col_double(),
`Performed Departures` = col_double(),
Passengers = col_double(),
`Freight (tons)` = col_double(),
`Mail (tons)` = col_double()