Answers for "how to extract a column from an array in python"

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

how to extract column from numpy array

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

Code answers related to "how to extract a column from an array in python"

Python Answers by Framework

Browse Popular Code Answers by Language