You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
readr has a nice method for parsing column types - compact string representation:
“Alternatively, you can use a compact string representation where each character represents one column: c = character, i = integer, n = number, d = double, l = logical, D = date, T = date time, t = time, ? = guess, or _/- to skip the column.”
I have tried this with readxl but get an error, for example:
Illegal column type: 'cciiiiccccclccc' [1]
Would it be possible to incorporate compact string representation for col_types in readxl?
The text was updated successfully, but these errors were encountered:
readr has a nice method for parsing column types - compact string representation:
“Alternatively, you can use a compact string representation where each character represents one column: c = character, i = integer, n = number, d = double, l = logical, D = date, T = date time, t = time, ? = guess, or _/- to skip the column.”
I have tried this with readxl but get an error, for example:
Illegal column type: 'cciiiiccccclccc' [1]
Would it be possible to incorporate compact string representation for col_types in readxl?
The text was updated successfully, but these errors were encountered: