Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 758 Bytes

File metadata and controls

20 lines (15 loc) · 758 Bytes

Returns DataFrame with original DataRow repeated n times.

DataRow.duplicate(n): DataFrame

Returns FrameColumn with original DataFrame repeated n times. Resulting FrameColumn will have an empty name.

Related operations:

DataFrame.duplicate(n): FrameColumn

Returns DataFrame where rows that satisfy to the given condition are repeated n times. If rowCondition is not specified all rows will be duplicated.

DataFrame.duplicateRows(n) [ { rowCondition } ]: DataFrame