Answers for "copy columns from two dimensional array python"

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
0

how to get the first few lines of an ndarray

In [11]: a[:,:2]
Out[11]: 
array([[-0.57098887, -0.4274751 ],
       [-0.22279713, -0.51723555],
       [ 0.67492385, -0.69294472],
       [ 0.41086611,  0.26374238]])
Posted by: Guest on August-11-2020

Code answers related to "copy columns from two dimensional array python"

Python Answers by Framework

Browse Popular Code Answers by Language