Creates a new L<R::DataFrame|SPVM::R::DataFrame> object, adds all columns of $x_data_frameand all columns of $y_data_frameare added to the new data frame object, and returns the new data frame object.
This method calls L<R::DataFrame#insert_col|SPVM::R::DataFrame/"insert_col"> method.
Exceptions:
The data frame $x_data_framemust be defined. Otherwise, an exception is thrown.
The data frame $y_data_framemust be defined. Otherwise, an exception is thrown.
Exceptions thrown by L<R::DataFrame#insert_col|SPVM::R::DataFrame/"insert_col"> method could be thrown.
Creates a new L<R::DataFrame|SPVM::R::DataFrame> object, adds all rows of $x_data_frameand all rows of $y_data_frameare added to the new data frame object, and returns the new data frame object.
Exceptions:
The data frame $x_data_framemust be defined. Otherwise, an exception is thrown.
The data frame $y_data_framemust be defined. Otherwise, an exception is thrown.
The column numbers of the data frame $x_data_framemust be equal to the column numbers of the data frame $y_data_frame.
The column name at column index$iof the data frame $x_data_framemust be equal to the column name at column index$iof the data frame $y_data_frame. Otherwise, an exception is thrown.
The type of the n-dimensional array at column index$iof the data frame $x_data_framemust be equal to the type of the n-dimensional array at column index$iof the data frame $y_data_frame. Otherwise, an exception is thrown.