-
Notifications
You must be signed in to change notification settings - Fork 293
Closed
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behavior
Description
This is the same issue as #321 but applied to read_table. That is
library(readr) # using v1.1.0
input <- "x y\n1 2\n\n"
read.table(text = input, header = TRUE)
#> x y
#> 1 1 2
read_table(input)
#> # A tibble: 2 × 2
#> x y
#> <int> <int>
#> 1 1 2
#> 2 NA NA
read_table2(input)
#> Warning: 1 parsing failure.
#> row col expected actual file
#> 2 -- 2 columns 1 columns literal data
#>
#> # A tibble: 2 × 2
#> x y
#> <int> <int>
#> 1 1 2
#> 2 NA NAIs/Was this behavior (still) intended for read_table?
Metadata
Metadata
Assignees
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behavior