bjornjorgensen commented on PR #37023:
URL: https://github.com/apache/spark/pull/37023#issuecomment-1170199790
_You're sure a multi-character string works here?_
@srowen it does.
DurationtestPulsetestMaxpulsetestCalories
60test110test130test409.1
60test117test145test479.0
`df = ps.read_csv("test.csv", sep="test")`
`df`
Duration | Pulse | Maxpulse | Calories
-- | -- | -- | --
60 | 110 | 130 | 409.1
60 | 117 | 145 | 479.0
`pdf = pd.read_csv("test.csv", sep="test")`
/tmp/ipykernel_531/2967356621.py:1: ParserWarning: Falling back to the
'python' engine because the 'c' engine does not support regex separators
(separators > 1 char and different from '\s+' are interpreted as regex); you
can avoid this warning by specifying engine='python'.
pdf = pd.read_csv("test.csv", sep="test")
`pdf`
Duration | Pulse | Maxpulse | Calories
-- | -- | -- | --
60 | 110 | 130 | 409.1
60 | 117 | 145 | 479.0
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]