ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

9 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

123 views

23 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

1 day ago

ThInKs We KnOw
Identity Array Function in NumPy #numpy #python #datascience #datascienceforbeginners #engineering

Creating 1D & 2D Identity Arrays using NumPy. The np.identity(n, dtype=None) function is used to create identity square arrays. n ...

0:55
Identity Array Function in NumPy #numpy #python #datascience #datascienceforbeginners #engineering

0 views

43 minutes ago

ThInKs We KnOw
Eye Array Function in NumPy #numpy #python #datascience #datascienceforbeginners #engineeringstudent

The NumPy eye function for creating 2D arrays and beyond. The syntax is np.eye(N, M=None, k=0, dtype = "float".) where the 'k' ...

1:04
Eye Array Function in NumPy #numpy #python #datascience #datascienceforbeginners #engineeringstudent

0 views

12 minutes 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

1 day 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

1 day ago

ThInKs We KnOw
Python Code: Identity Array Function in NumPy

import numpy as np # --- 2D Identity Matrices --- print("1. 3x3 Identity (Float):") print(np.identity(3)) print("\n2. 4x4 Identity (Integer):") ...

1:05
Python Code: Identity Array Function in NumPy

0 views

29 minutes ago

ThInKs We KnOw
Combination of arange and reshape functions in NumPy Arrays (Code in Description Box) #datascience

import numpy as np # --- 2D Arrays with arange() and reshape() --- print("1. 2D Array (3x4):") print(np.arange(12).reshape(3, ...

1:49
Combination of arange and reshape functions in NumPy Arrays (Code in Description Box) #datascience

0 views

56 minutes 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

6 hours ago