We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tired to read csv. And koalas and pandas show different result.
Below is one column "[""a"",""b""]"
Pandas returned below result
But koalas returned 2 columns
I already tried escape='"'. It also showed same result.
I thought pandas result is right so I want to get same result by koalas. Thanks please solve this issue
The text was updated successfully, but these errors were encountered:
escape='"' measure seems like working for me??
escape='"'
# test.csv col1,col2 "[""a"",""b""]"
# pandas >>> pd.read_csv col1 col2 0 ["a","b"] NaN # Koalas >>> ks.read_csv("test.csv", escape='"') col1 col2 0 ["a","b"] None
pandas and Koalas show me the same result with escape='"'
If it's still not working, could you give me a more detailed context of your situation ??
Sorry, something went wrong.
No branches or pull requests
I tired to read csv.
And koalas and pandas show different result.
Below is one column
"[""a"",""b""]"
Pandas returned below result
But koalas returned 2 columns
I already tried escape='"'. It also showed same result.
I thought pandas result is right so I want to get same result by koalas.
Thanks
please solve this issue
The text was updated successfully, but these errors were encountered: