-
Hi, I am analyzing a nested record structure shaped similar to:
What is the recommended way of unraveling the array such that all the record are flattened like so:
where the labels are given by for example I also have another related question. After I flattened the array is it possible to "view" it as records again, or would I need to copy and create a new Array using the Arraybuilder? I may have to mask certain entries (for example masking all entries from "c") of the flattened array after processing, which would be easier when the array would be viewable as a record rather than computing the positions by hand. Thank you and best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
On the face of it, doing things by hand seems like the easiest approach. We do have tools to generalise this for arrays, but it involves constructing layouts yourself. Do you have any more information about the structure, e.g. are your arrays regular? |
Beta Was this translation helpful? Give feedback.
On the face of it, doing things by hand seems like the easiest approach. We do have tools to generalise this for arrays, but it involves constructing layouts yourself. Do you have any more information about the structure, e.g. are your arrays regular?