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, duration hours minute second in high quality that is uploaded to the channel Statistics Globe 01 July 2022. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 979 times and liked it 21 visitors.