Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vroom fails to detect delimiter if data is quoted with double quote or only contains one column #486

Open
hidekoji opened this issue Jan 27, 2023 · 0 comments
Labels
bug an unexpected problem or unintended behavior

Comments

@hidekoji
Copy link

hidekoji commented Jan 27, 2023

This is related to tidyverse/readr#1460
With vroom version 1.6.0, If data is quoted with double quotes, it fails to detect the delimiter even if I specify the quote parameter.

vroom::vroom('"Date","WWDC Page Access"
+ "2015-07-01",186
+ "2015-07-02",161', quote='"')
#> Error: Could not guess the delimiter.
#> 
#> Use `vroom(delim =)` to specify one explicitly.

Created on 2023-01-27 with reprex v2.0.2

Also, if it contains only one column, it cannot detect the delimiter too.

vroom::vroom("a
2022-01-01")
#> Error: Could not guess the delimiter.
#> 
#> Use `vroom(delim =)` to specify one explicitly.

Created on 2023-01-27 with reprex v2.0.2

@hadley hadley added the bug an unexpected problem or unintended behavior label Aug 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug an unexpected problem or unintended behavior
Projects
None yet
Development

No branches or pull requests

2 participants