Creating arrays Flashcards

1
Q

What is NumPy?

A

NumPy (Numerical Python) is a library for numerical computations in Python, providing support for arrays, matrices, and mathematical functions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why use NumPy over Python lists?

A

NumPy is faster, more memory-efficient, and provides advanced functionality like vectorized operations and mathematical functions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to install NumPy?

A

Use pip install numpy.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to import NumPy?

A

import numpy as np.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of the np alias?

A

It is a convention to make the code more concise when using NumPy functions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to create a 1D array from a Python list?

A

arr = np.array([1, 2, 3, 4]).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to create a 2D array from a Python list?

A

matrix = np.array([[1, 2], [3, 4]]).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How to create an array filled with zeros?

A

zeros_arr = np.zeros((3, 3)).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How to create an array filled with ones?

A

ones_arr = np.ones((2, 4)).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to create an uninitialized array?

A

empty_arr = np.empty((2, 2)).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does arr.shape return?

A

The dimensions of the array (e.g., (3, 3) for a 3x3 array).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does arr.ndim return?

A

The number of dimensions (e.g., 2 for a 2D array).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does arr.dtype return?

A

The data type of the array elements (e.g., int32, float64).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does arr.size return?

A

The total number of elements in the array (e.g., 9 for a 3x3 array).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are common data types in NumPy?

A

int32, float64, bool, complex.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How to specify the data type when creating an array?

A

arr = np.array([1, 2, 3], dtype=np.float64).

17
Q

How to create an array with values from 0 to 10 with a step of 2?

A

arr = np.arange(0, 10, 2)[0, 2, 4, 6, 8].

18
Q

How to create an array with 5 evenly spaced values between 0 and 1?

A

arr = np.linspace(0, 1, 5)[0.0, 0.25, 0.5, 0.75, 1.0].

19
Q

How to create an array of random numbers between 0 and 1?

A

rand_arr = np.random.rand(3, 3).

20
Q

How to create an identity matrix?

A

identity_matrix = np.eye(3) or identity_matrix = np.identity(3).

21
Q

How to create a diagonal matrix?

A

diag_matrix = np.diag([1, 2, 3])[[1, 0, 0], [0, 2, 0], [0, 0, 3]].

22
Q

What is the difference between np.eye() and np.identity()?

A

np.eye() can create non-square matrices, while np.identity() always creates square matrices.

23
Q

What is vectorization in NumPy?

A

Performing operations on entire arrays without explicit loops, making code faster and more concise.

24
Q

How to check the shape of an array?

A

Use arr.shape.

25
Q

How to check the number of dimensions of an array?

A

Use arr.ndim.

26
Q

How to check the data type of an array?

A

Use arr.dtype.

27
Q

How to check the total number of elements in an array?

A

Use arr.size.

28
Q

How to create a 3x3 array of zeros?

A

zeros_arr = np.zeros((3, 3)).

29
Q

How to create a 2x4 array of ones?

A

ones_arr = np.ones((2, 4)).

30
Q

How to create a 2x2 uninitialized array?

A

empty_arr = np.empty((2, 2)).

31
Q

How to create an array with values from 0 to 9?

A

arr = np.arange(10).

32
Q

How to create an array with 10 evenly spaced values between 0 and 1?

A

arr = np.linspace(0, 1, 10).

33
Q

How to create a 3x3 array of random numbers?

A

rand_arr = np.random.rand(3, 3).

34
Q

How to create a 3x3 identity matrix?

A

identity_matrix = np.eye(3).

35
Q

How to create a diagonal matrix with values [1, 2, 3]?

A

diag_matrix = np.diag([1, 2, 3]).