read_csv errors with multiple column rows #224
Closed
Comments
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For files with multiple column rows, read_csv errors out even if i tell it not to read the rows with different columns using n_max. For eg
It should read the first line as a header and the next line as the data and shouldn't go any further.
If i use skip = 2 so the first two lines are skipped then it works as expected. It read the third line as header and fourth as data
read.csv from base r has no problems reading the file with nrows = 1
The text was updated successfully, but these errors were encountered: