MLBlocks icon indicating copy to clipboard operation
MLBlocks copied to clipboard

Add the possibility to append data to a variable

Open csala opened this issue 7 years ago • 0 comments

Sometimes it's needed to appended or merge the output of a primitive with its own input, or with some other variable.

Two possibilities exist for this:

  • Add a way to indicate that the output needs to be appended to the input. This way, for example, a primitive can add columns to X instead of replacing it.
  • Add a native primitive that allows the concatenation of multiple variables: X = pd.concat([X1, X2], axis=1)

csala avatar Aug 28 '18 19:08 csala