Hussain Nasir Khan

A programmer, writer, and engineer. I have a deep interest in computer vision and artificial intelligence.

How to reverse an array in NumPy

How to reverse an array in NumPy

You can reverse an array in the NumPy with the following code. If you want to learn Python, I highly recommend reading This Book. Method 1 Output [15 4 3 12 1] Method 2 Output [15 4 3 12 1]

How to drop nan in NumPy array

How to drop nan in NumPy array

You can drop nan in the NumPy array with the following code. If you want to learn Python, I highly recommend reading This Book. Method 1 Output [1. 2. 4.] Method 2 Output [1. 2. 4.] Method 3 Output [1. 2. 4.] People are also reading: Best Python Books What is Computer Vision? Examples, Applications, Techniques Books …

How to drop nan in NumPy array Read More »

How to reshape in NumPy

How to reshape in NumPy

You can reshape the NumPy array with the following code. If you want to learn Python, I highly recommend reading This Book. Output [[1 2 3] [4 5 6]] (2, 3) [[1 2] [3 4] [5 6]] [[1 2 3 4 5 6]] [[1] [2] [3] [4] [5] [6]]

How to read csv in NumPy

How to read CSV in NumPy

You can read CSV in NumPy with the following code. If you want to learn Python, I highly recommend reading This Book. [[55. 5.] [60. 10.] [70. 15.] [90. 20.] [85. 7.] [40. 9.]] <class ‘numpy.ndarray’> 2 People are also reading: Best Python Books What is Computer Vision? Examples, Applications, Techniques Books for Machine Learning (ML) Free …

How to read CSV in NumPy Read More »

How to convert a list in NumPy array

How to convert a list in NumPy array

You can convert a list in the NumPy array with the following code. If you want to learn Python, I highly recommend reading This Book. Method 1: Convert a list in NumPy array using np.array() <class ‘list’> <class ‘numpy.ndarray’> Method 2: Convert a list in NumPy array using np.asarray() <class ‘list’> <class ‘numpy.ndarray’> People are also reading: …

How to convert a list in NumPy array Read More »