Answers for "how to take a column of an array"

4

how to address a column in a 2d array python

>>> import numpy as np
>>> A = np.array([[1,2,3,4],[5,6,7,8]])

>>> A
array([[1, 2, 3, 4],
    [5, 6, 7, 8]])

>>> A[:,2] # returns the third columm
array([3, 7])
Posted by: Guest on June-04-2020
1

extract column numpy array python

# Extract/ Slice only the 3rd column from the numpy array
print(a2[:,[2]])
Posted by: Guest on October-16-2020

Code answers related to "how to take a column of an array"

Python Answers by Framework

Browse Popular Code Answers by Language