3 Matching Annotations
- Apr 2019
-
jrnold.github.io jrnold.github.io
-
?print.tbl_df
?print.tbl instead of ?print.tbl_df (archived)
-
- Mar 2019
-
jrnold.github.io jrnold.github.io
-
arrange(flights, distance / air_time * 60)
Do we need a descending order to put the fastest flights first? arrange(flights, desc(distance / air_time 60)) See also: flights %>% mutate(speed = distance / air_time 60) %>% select(tailnum, distance, air_time, speed, dep_time) %>% arrange(desc(speed))
-
-
jrnold.github.io jrnold.github.io
-
geom_hist
geom_histogram
-