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
from https://jira.apache.org/jira/browse/SPARK-23931
SELECT array_zip(ARRAY[1, 2], ARRAY['1b', null, '3b']); -- [ROW(1, '1b'), ROW(2, null), ROW(null, '3b')]
Shoot for something like
df %>% array_zip(fld1, flt2, fld4, .outname)
which retains all other fields, drops those three, and replaces them with the zipped version
The text was updated successfully, but these errors were encountered:
tracking with #14
Sorry, something went wrong.
@javierluraschi do you plan to do anything along these lines (using Spark SQL updates in v2.4 to better handle nested data) in sparklyr?
sparklyr
No branches or pull requests
from https://jira.apache.org/jira/browse/SPARK-23931
Shoot for something like
which retains all other fields, drops those three, and replaces them with the zipped version
The text was updated successfully, but these errors were encountered: