datatable.cbind()

Create a new Frame by appending columns from several frames.

This function is exactly equivalent to:

dt.Frame().cbind(*frames, force=force)

Parameters

frames
Frame | List[Frame] | None
force
bool
return
Frame

See also

  • rbind() – function for row-binding several frames.

  • Frame.cbind() – Frame method for cbinding some frames to another.