Class FrameLibAppend
- java.lang.Object
-
- org.apache.sysds.runtime.frame.data.lib.FrameLibAppend
-
public class FrameLibAppend extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FrameBlock
append(FrameBlock a, FrameBlock b, boolean cbind)
Appends the given argument FrameBlock 'that' to this FrameBlock by creating a deep copy to prevent side effects.
-
-
-
Method Detail
-
append
public static FrameBlock append(FrameBlock a, FrameBlock b, boolean cbind)
Appends the given argument FrameBlock 'that' to this FrameBlock by creating a deep copy to prevent side effects. For cbind, the frames are appended column-wise (same number of rows), while for rbind the frames are appended row-wise (same number of columns).- Parameters:
a
- FrameBlock to append tob
- FrameBlock to appendcbind
- if true, column append- Returns:
- frame block of the two blocks combined.
-
-