Sum of NumPy Array in Python (3 Examples) | np.sum() Function of NumPy Library | Adding Rows/Columns

Published: 01 July 2022
on channel: Statistics Globe
979
21

How to apply the np.sum function in the Python programming language. More details: https://statisticsglobe.com/sum-numpy...
Python code of this video:

import numpy as np # Load NumPy library

my_array = np.array([[1, 2, 3], [4, 5, 6]]) # Create example array
print(my_array) # Print example array
[[1 2 3]
[4 5 6]]

print(np.sum(my_array)) # Get sum of all array values
21

print(np.sum(my_array, axis = 0)) # Get sum of array columns
[5 7 9]

print(np.sum(my_array, axis = 1)) # Get sum of array rows
[ 6 15]

Follow me on Social Media:
Facebook – Statistics Globe Page:   / statisticsglobecom  
Facebook – Group for Discussions & Questions:   / statisticsglobe  
LinkedIn – Statistics Globe Page:   / statisticsglobe  
LinkedIn – Group for Discussions & Questions:   / 12555223  
Twitter:   / joachimschork  

Music by bensound.com


Watch video Sum of NumPy Array in Python (3 Examples) | np.sum() Function of NumPy Library | Adding Rows/Columns online without registration, duration hours minute second in high quality. This video was added by user Statistics Globe 01 July 2022, don't forget to share it with your friends and acquaintances, it has been viewed on our site 979 once and liked it 21 people.