You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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:
X = pd.concat([X1, X2], axis=1)
The text was updated successfully, but these errors were encountered: