Take the following example from CRAN'S dplyr introduction:
select(flights, tail_num = tailnum)
#> # A tibble: 336,776 x 1
#> tail_num
#> <chr>
#> 1 N14228
#> 2 N24211
#> 3 N619AA
#> 4 N804JB
#> ... with 336,772 more rows
Why are these row id
s being returned and is there anyway to remove them?