CSV file is here: IMDB movies dataset. It contains 180 lines as sample.
How using row_number I will be able to find the lowest row?
I'm able to find longest. How to find shortest?
#longest movie
(longest <- imdb_movies.csv %>%
filter(row_number(desc(Runtime_in_min)) == 1))