Skip to main content
info
This documentation is for version v2.4 of the product.
For the latest version(v2.7) documentation click here
Version: v2.4 print this page

Split By Expression

This node splits the incoming DataFrame into two output DataFrames by applying the conditional logic

Input

It accepts a DataFrame as input from the previous Node

Type

transform

Fields

NameTitleDescription
conditionExprConditional Expression to split the Data onConditional Expression to be used for Splitting the DataFrame into two. DataFrame which matches the condition will go to the lower edge output. The other would go to the higher edge output.

Examples

Input

idlabelf1f2
61.02.12.0
40.04.15.0
50.03.16.0
661.02.12.0

Parameters

NameValue
Conditional Expression to split the Data onid > 22

Output1

idlabelf1f2
661.02.12.0

Output2

idlabelf1f2
61.02.12.0
40.04.15.0
50.03.16.0