search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to
chevron_leftCookbooks
Accessing a value in a 2D arrayAccessing columns of a 2D arrayAccessing rows of a 2D arrayCalculating the determinant of a matrixChecking allowed values for a NumPy data typeChecking if a NumPy array is a view or copyChecking the version of NumPyChecking whether a NumPy array contains a given rowComputing Euclidean distance using NumpyConcatenating 1D arraysConverting array to lowercaseConverting type of NumPy array to stringCreating a copy of an arrayDifference between Python List and Numpy arrayDifference between the methods array_equal and array_equivDifference between the methods mod and fmodDifference between the methods power and float_powerFinding the closest value in an arrayFinding the Index of Largest Value in a Numpy ArrayFinding the Index of Smallest Value in a Numpy ArrayFinding the most frequent value in a NumPy arrayFlattening Numpy arraysGetting constant PiGetting elements from a two dimensional array using two dimensional array of indicesGetting indices of N maximum valuesGetting indices of N minimum valuesGetting the number of columns of a 2D arrayGetting the number of non-zero elements in a NumPy arrayGetting the number of rows of a 2D arrayInitializing an array of onesInitializing an array of zerosInitializing an identity matrixLimiting array values to a certain rangePerforming linear regressionPrinting full or truncated NumPy arrayPrinting large Numpy arrays without truncationRemoving rows containing NaN in a NumPy arrayReversing a NumPy arraySaving NumPy array to a fileShape of Numpy ArraysSorting value of one array according to anotherSuppressing scientific notation
check_circle
Mark as learned
thumb_up
0
thumb_down
0
chat_bubble_outline
0
Comment
auto_stories Bi-column layout
settings

Shape of NumPy Arrays

schedule Aug 11, 2023
Last updated
local_offer
PythonNumPy
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

Introduction

The shape property of a NumPy array is a tuple that tells us the size of the each nested array. This property is most commonly used to access the number of rows and columns of a 2D NumPy array.

Example

Get number of rows and columns of a 2D array

We want to get the number of rows and columns of a 2D NumPy array. The code is straight-forward:

x = np.array([[1,2,3], [4,5,6]])
(2, 3)

Here, our NumPy array x has 2 rows and 3 columns.

Extracting the values from the shape property

Since shape is a tuple, we can access the values using array-like notation:

num_rows = x.shape[0]
num_cols = x.shape[1]
print("Number of rows: " + str(num_rows))
print("Number of columns: " + str(num_cols))
Number of rows: 2
Number of columns: 3

Misconceptions

Shape of a 1D array

The shape of a 1D array can be a source of confusion for those who think of NumPy arrays as vectors/matrices.

Example

Suppose we have the following code snippet:

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

Somewhat confusingly, the presence of the comma may deceive you into thinking our x is two-dimensional. However, we know that x is one-dimensional as it's simply [1,2,3]. Therefore, if you see , followed by nothing, you have yourself a flattened array, or a vector for the mathematically-inclined. In addition, the (3,) just means that you have 3 elements in your array, and it has nothing to do with the number of rows and columns.

WARNING

Rows/Column interpretation only work for 2D arrays. The catch is that the shape property can be interpreted as the number of rows and columns for 2D arrays only. If we think of np.array([1,2,3]) as a vector, or a 3 by 1 matrix, we may be inclined to think of its shape as (3,1). While thinking in terms of vectors and matrices is helpful in the world of NumPy, we still need to keep in mind the subtlety of the shape property. The shape property gives us the size of the array in each of its dimension, which does not necessarily equate to the number of rows and columns. For 2D arrays though, the shape does correspond to rows and columns.

robocat
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!