-
Notifications
You must be signed in to change notification settings - Fork 158
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
File containing a single unescaped " out-of-sample is read incorrectly #1036
Comments
When I run this example on main branch with By the way, how did you run it in verbose mode? I did |
"verbose mode" refers to supplying parameter
|
Indeed, this example seem to be working correctly now. So closing the issue. |
Ok, I just tried creating a test example for this, and it turns out it's not quite working. Even though the dataset is created with the correct shape, the value |
@st-pasha I don't see |
You're right, I forgot to push that branch earlier. See #2730 |
Closed in #2709 |
When
fill=False
, this example raises an error:even though the file can be read with QR=3 (and in fact if we move problematic line to the beginning of the file, it will be parsed correctly).
When
fill=True
the file does not throw an error, but returns a 101x3 Frame where the last row contains value"bar,bza\na,bb,ccc\n...
with the content of the rest of the file.In addition, verbose mode shows
Obviously not all rows were sampled, and therefore
nrows=99
is a gross underestimation (there should be 301 rows).The text was updated successfully, but these errors were encountered: