I am looking for the most common Start Station Name
in the column. So I used:
Top_Start_Station_Name <- df %>%
count(start_station_name)
However, it contains 82 pages of station names and their occurrences. How can I arrange it to have the most 5 station names appear?