I am trying to find the unique combinations of origin and dest in R editor. However, the output is not showing the rows number. This is the expected output.
# Find all unique origin and destination pairs
flights |>
distinct(origin, dest)
#> # A tibble: 224 × 2
#> origin dest
#> <chr> <chr>
#> 1 EWR IAH
#> 2 LGA IAH
#> 3 JFK MIA
#> 4 JFK BQN
#> 5 LGA ATL
#> 6 EWR ORD
#> # ℹ 218 more rows
R Editor showing less rows
R Editor showing less rows
- Attachments
-
- flights.csv
- (4.34 KiB) Downloaded 3 times
-
- Untitled.png (89.13 KiB) Viewed 260 times