If I don't request specific column types, then read_csv treats negative numbers appropriately.
readr::read_csv("A,B\n-4,5G")
## A B
## 1 -4 5
If I specify that the column is numeric, then read_csv drops the negative signs.
readr::read_csv("A,B\n-4,5G", col_types = "nn")
## A B
## 1 4 5
If I don't request specific column types, then
read_csvtreats negative numbers appropriately.If I specify that the column is numeric, then
read_csvdrops the negative signs.