Answers for "numpy array get column"

4

print column in 2d numpy array

import numpy as np
x=np.arange(25).reshape(5,5)
print(x)
#print(x[:,index_of_column_you_need])
print(x[:,3])
Posted by: Guest on November-19-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
0

access to specific column array numpy

second_and_third_column = an_array[:, 1:3]
Posted by: Guest on December-29-2020
0

how to extract column from numpy array

print(a2[:,[2]])
Posted by: Guest on May-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language