Answers for "np sum of values in column"

0

python how to sum columns of an array

# Example usage 1:
import numpy as np
numpy_array = np.array([[1, 2, 3, 4, 5], 
                        [1, 2, 3, 4, 5],
                        [1, 2, 3, 4, 5]])
np.sum(numpy_array, axis=0)
--> array([ 3,  6,  9, 12, 15])

# Example usage 2 (without numpy):
array = [[1, 2, 3, 4, 5],
         [1, 2, 3, 4, 5],
         [1, 2, 3, 4, 5]]
[sum(x) for x in zip(*array)]
--> [3, 6, 9, 12, 15]
Posted by: Guest on October-04-2020
3

sum axis in python

import numpy as np

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

total_0_axis = np.sum(array1, axis=0)
print(f'Sum of elements at 0-axis is {total_0_axis}')

total_1_axis = np.sum(array1, axis=1)
print(f'Sum of elements at 1-axis is {total_1_axis}')
Output:


Sum of elements at 0-axis is [ 9 12]
Sum of elements at 1-axis is [ 3  7 11]
Posted by: Guest on June-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language