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
Given a dataframe that loads the HL7 files, can you provide an example of parsing a segment_field and/or subfield from the message column?
val repro = spark.read.format("hl7").load("...")
The text was updated successfully, but these errors were encountered:
Would love to see an example as well. In my particular case, the event id is in the message header and that is needed to define schema of segments
Sorry, something went wrong.
Message is stored as a string so you can parse the header information in it with native Spark split() functions to get what you need.
zavoraad
No branches or pull requests
Given a dataframe that loads the HL7 files, can you provide an example of parsing a segment_field and/or subfield from the message column?
val repro = spark.read.format("hl7").load("...")
The text was updated successfully, but these errors were encountered: