Class FrameLibAppend
java.lang.Object
org.apache.sysds.runtime.frame.data.lib.FrameLibAppend
-
Method Summary
Modifier and TypeMethodDescriptionstatic FrameBlockappend(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 Details
-
append
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.
-