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


On this page of the site you can watch the video online Sum of NumPy Array in Python (3 Examples) | np.sum() Function of NumPy Library | Adding Rows/Columns with a duration of hours minute second in good quality, which was uploaded by the user Statistics Globe 01 July 2022, share the link with friends and acquaintances, this video has already been watched 979 times on youtube and it was liked by 21 viewers. Enjoy your viewing!