How do you extract a column from a multi-dimensional array?

jaweria picture jaweria · May 24, 2009 · Viewed 713.3k times · Source

Does anybody know how to extract a column from a multi-dimensional array in Python?

Answer

Andre Luiz picture Andre Luiz · Sep 28, 2011
>>> 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])

See also: "numpy.arange" and "reshape" to allocate memory

Example: (Allocating a array with shaping of matrix (3x4))

nrows = 3
ncols = 4
my_array = numpy.arange(nrows*ncols, dtype='double')
my_array = my_array.reshape(nrows, ncols)