Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space DEV and version next

...

If the arrays are of different length, then null values are inserted for combinations where one array is missing a corresponding value.

D s
snippetBasic

Array literal reference example:

D code

derive type:single value:ARRAYZIP([["A","B","C"],["1","2","3"]] )

Output: Generates Generates a nested array combining elements from the two source arrays. 

Column reference example:

D code

derive type:single value:ARRAYZIP([array1,array2]) as:'zippedArray'

Output: Generates Generates a new zippedArray column column containing a single nested array pairing the elements of the array in the listed order of the arrays.  

D s
snippetSyntax

D code

derive type:single value:ARRAYZIP(array_ref1,array_ref2)

ArgumentRequired?Data TypeDescription
array_ref1Ystring or arrayName of first column or first array literal to apply to the function
array_ref2Ystring or arrayName of second column or second array literal to apply to the function

D s lang notes

array_ref1, array_ref2

...

D s
snippetExamples

Example - Simple ARRAYZIP exampleARRAYZIP example

Source:

ItemLettersNumerals
Item1["A","B","C"]["1","2","3"]
Item2["D","E","F"]["4","5","6"]
Item3["G","H","I"]["7","8","9"]

...

Include Page
EXAMPLE - Flatten and Unnest Transforms
EXAMPLE - Flatten and Unnest Transforms

D s also
labelnested