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

DropDuplicateRows

This node creates a new DataFrame by dropping duplicate rows

Type

transform

Input

A DataFrame to filter rows on duplicate.

Output

A DataFrame containing no duplicate row on the selected columns.

Fields

NameTypeDescription
COLUMNSSeq of columnsSeq of columns to check the duplicate condition.(By default duplication checked on all the columns)

Examples

Input

nameageheight
Alice580
Alice580
Alice1080

Parameters1 ----------

NameValue
COLUMNSname,height

Output1

nameageheight
Alice580

Parameters2 ----------

NameValue
COLUMNS

Output2

nameageheight
Alice580
Alice1080