Closed
Description
The data has 73 rows and all entries in the last column are integers. Yet read_csv
guesses col_double()
.
Example:
library(readr)
read_csv("nettle_1999_climate.csv") -> nettle
Results in:
Parsed with column specification:
cols(
Country = col_character(),
Population = col_double(),
Area = col_double(),
MGS = col_double(),
Langs = col_double()
)
Last line should be Langs = col_integer()
.
This is using up-to-date readr from CRAN and R version 3.6.3 (2020-02-29).
Metadata
Metadata
Assignees
Labels
No labels