Skip to content

Merging a 10x10 data table into a 1x100 #3203

Discussion options

You must be logged in to vote

Just use dt.rbind():

from datatable import dt
DT_10x10 = dt.Frame([range(10)]*10)
DT_100x1 = dt.rbind(*DT_10x10, bynames=False)

Replies: 2 comments 8 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by SMOK1N-ACES
Comment options

You must be logged in to vote
8 replies
@oleksiyskononenko
Comment options

@SMOK1N-ACES
Comment options

@oleksiyskononenko
Comment options

@SMOK1N-ACES
Comment options

@oleksiyskononenko
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants