rbind.typed_frame {interface} | R Documentation |
This function combines multiple typed data frames row-wise, ensuring type consistency and applying row validation rules.
It extends the base rbind
function by adding type checks and row validation based on the specified rules for typed data frames.
## S3 method for class 'typed_frame'
rbind(..., deparse.level = 1)
... |
Typed data frames to combine. |
deparse.level |
See |
This version of rbind
for typed_frame
performs extra type checking and row validation to ensure consistency and adherence to specified rules.
Refer to the base rbind
documentation for additional details on combining data frames: rbind
.
The combined typed data frame. The returned object is of class 'typed_frame' and inherits all properties (column types, validation rules, etc.) from the first data frame in the list.