R Editor showing less rows

General help and assistance with jamovi. Bug reports can be made at our issues page: https://github.com/jamovi/jamovi/issues . (If you're unsure feel free to discuss it here)
Post Reply
srk80
Posts: 17
Joined: Sat Mar 18, 2023 7:37 am

R Editor showing less rows

Post by srk80 »

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
Attachments
flights.csv
(4.34 KiB) Downloaded 3 times
Untitled.png
Untitled.png (89.13 KiB) Viewed 266 times
Post Reply