0% found this document useful (0 votes)
28 views1 page

NumPy Joining Array

This document discusses joining NumPy arrays in Python. It explains that joining means putting the contents of two or more arrays into a single array. Various NumPy methods for joining arrays are demonstrated, including concatenate(), stack(), hstack(), vstack(), and dstack(). Examples of joining one-dimensional and two-dimensional arrays along different axes are provided.

Uploaded by

ahmed salem
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

NumPy Joining Array

This document discusses joining NumPy arrays in Python. It explains that joining means putting the contents of two or more arrays into a single array. Various NumPy methods for joining arrays are demonstrated, including concatenate(), stack(), hstack(), vstack(), and dstack(). Examples of joining one-dimensional and two-dimensional arrays along different axes are provided.

Uploaded by

ahmed salem
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

 Tutorials  Exercises  Get Certified  Services  Bootcamps Spaces Sign Up Log in

Dark mode
Dark code
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP BOOTSTRAP HOW TO W3.CSS C C++ C# REACT R JQUERY DJANGO   

NumPy Tutorial ADVERTISEMENT

NumPy HOME
NumPy Intro
NumPy Getting Started

NumPy Joining Array


NumPy Creating Arrays
NumPy Array Indexing
NumPy Array Slicing
NumPy Data Types ❮ Previous Next ❯
NumPy Copy vs View
NumPy Array Shape
NumPy Array Reshape
NumPy Array Iterating
Joining NumPy Arrays
NumPy Array Join
Joining means putting contents of two or more arrays in a single array.
NumPy Array Split
NumPy Array Search In SQL we join tables based on a key, whereas in NumPy we join arrays by axes.
NumPy Array Sort
We pass a sequence of arrays that we want to join to the concatenate() function, along with the axis. If axis is not explicitly
NumPy Array Filter
passed, it is taken as 0.

NumPy Random
Random Intro Example Get your own Python Server
Data Distribution
Random Permutation Join two arrays
Seaborn Module
import numpy as np
Normal Distribution
Binomial Distribution
arr1 = np.array([1, 2, 3])

arr2 = np.array([4, 5, 6])

arr = np.concatenate((arr1, arr2))

print(arr)

Try it Yourself »

Example
COLOR PICKER
Join two 2-D arrays along rows (axis=1):

import numpy as np

arr1 = np.array([[1, 2], [3, 4]])

arr2 = np.array([[5, 6], [7, 8]]) 


arr = np.concatenate((arr1, arr2), axis=1)

print(arr)

Try it Yourself »

Joining Arrays Using Stack Functions


Stacking is same as concatenation, the only difference is that stacking is done along a new axis.

We can concatenate two 1-D arrays along the second axis which would result in putting them one over the other, ie. stacking.

We pass a sequence of arrays that we want to join to the stack() method along with the axis. If axis is not explicitly passed it is
taken as 0.

Example

import numpy as np

arr1 = np.array([1, 2, 3])

arr2 = np.array([4, 5, 6])

ADVERTISEMENT
arr = np.stack((arr1, arr2), axis=1)

print(arr)

Try it Yourself »

ADVERTISEMENT

Stacking Along Rows


NumPy provides a helper function: hstack() to stack along rows.

Example

import numpy as np

arr1 = np.array([1, 2, 3])

arr2 = np.array([4, 5, 6])

arr = np.hstack((arr1, arr2))

print(arr)

Try it Yourself »

Stacking Along Columns


NumPy provides a helper function: vstack() to stack along columns.

Example

import numpy as np

arr1 = np.array([1, 2, 3])

arr2 = np.array([4, 5, 6])

arr = np.vstack((arr1, arr2))

print(arr)

Try it Yourself »

Stacking Along Height (depth)


NumPy provides a helper function: dstack() to stack along height, which is the same as depth.

Example

import numpy as np

arr1 = np.array([1, 2, 3])

arr2 = np.array([4, 5, 6])

arr = np.dstack((arr1, arr2))

print(arr)

Try it Yourself »

Test Yourself With Exercises

Exercise:
Use a correct NumPy method to join two arrays into a single array.

arr1 = np.array([1, 2, 3])

arr2 = np.array([4, 5, 6])

arr = np. ((arr1, arr2))

Submit Answer »

Start the Exercise

❮ Previous Log in to track progress Next ❯

ADVERTISEMENT

ADVERTISEMENT

Spaces Upgrade Newsletter Get Certified Report Error

Top Tutorials Top References Top Examples Get Certified


HTML Tutorial HTML Reference HTML Examples HTML Certificate
CSS Tutorial CSS Reference CSS Examples CSS Certificate
JavaScript Tutorial JavaScript Reference JavaScript Examples JavaScript Certificate
How To Tutorial SQL Reference How To Examples Front End Certificate
SQL Tutorial Python Reference SQL Examples SQL Certificate
Python Tutorial W3.CSS Reference Python Examples Python Certificate
W3.CSS Tutorial Bootstrap Reference W3.CSS Examples PHP Certificate
Bootstrap Tutorial PHP Reference Bootstrap Examples jQuery Certificate
PHP Tutorial HTML Colors PHP Examples Java Certificate
Java Tutorial Java Reference Java Examples C++ Certificate
C++ Tutorial Angular Reference XML Examples C# Certificate
jQuery Tutorial jQuery Reference jQuery Examples XML Certificate

FORUM | ABOUT

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we
cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2023 by Refsnes Data. All Rights Reserved.


W3Schools is Powered by W3.CSS.

You might also like