LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  Combining Histogram or aggregation data

    Employee
    Posted 02-07-2012 13:35

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Kevinpbarry

    I have some brd's that I create histograms from, or create an aggregation and I would like to combine them into one data set. I can't seem to find a node that will add the data together into one set.
    There may or may not be similar fields, I just want a list of all the histograms combined. Thanks


  • 2.  RE: Combining Histogram or aggregation data

    Employee
    Posted 02-07-2012 15:05

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: ltolleson

    You can use the "cat" (concatenate) node to combine multiple datasets into one. There are 3 modes that can be used depending on the data. Exact means that all fields in all datasets must be the same. Union will combine all fields from all datasets even if they are different. Missing fields from any dataset will be filled with nulls. The last mode is Intersection. This mode will only keep like fields between all datasets.

    The "cat" node by default only has one input into the node. You will need to create new inputs on the node for multiple datasets. Simply drag the wire from each dataset onto the node. This will create a new input.


  • 3.  RE: Combining Histogram or aggregation data

    Employee
    Posted 02-08-2012 06:49

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Kevinpbarry

    This was exactly what I was looking for.