Joining Numpy Arrays

We can join two or more arrays in a single new array using the following:

  1. concatenate() method: Joining along with axis, unlike keys in SQL.
  2. stack method: Joining along a new axis, unlike keys in SQL.

Joining Numpy Arrays with concatenate()

Output

Joining Numpy Arrays with Stack Methods

Join arrays in Numpy using the stack methods, such as

  • stack()
  • hstack()
  • vstack()
  • dstack()
  • column_stack()

Let us see the examples one by one:

numpy.stack() in Python

Join Numpy arrays using the stack() method:

Output

numpy.hstack() in Python

Stack along rows using the hstack() method in Numpy:

Output

numpy.vstack() in Python

Stack along columns using the vstack() method in Numpy:

Output

numpy.dstack() in Python

Stack along depth i.e. height using the dstack() method in Numpy:

Output

numpy.column_stack() in Python

Stack according to columns using the column_stack() method in Numpy:

Output

If you liked the tutorial, spread the word and share the link and our website Studyopedia with others.

For Videos, Join Our YouTube Channel: Join Now


Read More:

How to Iterate Numpy Arrays
Split Numpy Array
Studyopedia Editorial Staff
Studyopedia Editorial Staff
[email protected]

We work to create programming tutorials for all.

No Comments

Post A Comment

Discover more from Studyopedia

Subscribe now to keep reading and get access to the full archive.

Continue reading