ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

5 results

ThInKs We KnOw
arange and reshape function to create 2D and 3D arrays in NumPy #datascience #numpy #python

TOPIC: Creating 2D & 3D Arrays using NumPy arange. PROCESS: Combine np.arange() to generate data and .reshape() to set ...

0:56
arange and reshape function to create 2D and 3D arrays in NumPy #datascience #numpy #python

121 views

20 hours ago

ThInKs We KnOw
Python Code: reshaping 2D array into 3D and 1D Arrays in NumPy (Code in Description Box) #numpy

import numpy as np # Base 2D Array (4x3) arr_2d = np.array([ [1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12] ]) print(f"Base 2D ...

1:31
Python Code: reshaping 2D array into 3D and 1D Arrays in NumPy (Code in Description Box) #numpy

0 views

21 hours ago

ThInKs We KnOw
Python Code: reshaping 3D array into 2D and 1D Arrays in NumPy (Code in Description Box) #numpy

import numpy as np # Base 3D Array (2x2x3) arr_3d = np.array([ [[1, 2, 3], [4, 5, 6]], [[7, 8, 9], [10, 11, 12]] ]) print(f"Base 3D ...

1:21
Python Code: reshaping 3D array into 2D and 1D Arrays in NumPy (Code in Description Box) #numpy

0 views

21 hours ago

ThInKs We KnOw
Python Code: reshape function in NumPy Array (Code in Description Box) #numpy #python #datascience

import numpy as np # Base Array (12 elements) arr = np.arange(1, 13) print(f"Base Array: {arr}\n") # Example 1: Reshape 1D to 2D ...

1:41
Python Code: reshape function in NumPy Array (Code in Description Box) #numpy #python #datascience

0 views

21 hours ago

vlogommentary
How to Select Parent Subarrays in a NumPy Array Using Boolean Indexing

Learn how to use NumPy boolean indexing to select entire subarrays based on conditions applied to their elements, preserving ...

3:19
How to Select Parent Subarrays in a NumPy Array Using Boolean Indexing

0 views

3 hours ago