100 numpy questions Flashcards

1
Q

How to import the numpy package under the name np?

A

import numpy as np

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

How to print the numpy version and the configuration?

A

print(np.\_\_version\_\_) and np.show_config()

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

How to create a null vector of size 10?

A

Z = np.zeros(10)

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

How to find the memory size of any array?

A

Z.size * Z.itemsize (e.g., print(\"%d bytes\" % (Z.size * Z.itemsize)))

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

How to get the documentation of the numpy add function from the command line?

A

%run python -c \"import numpy; numpy.info(numpy.add)\"

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

How to create a null vector of size 10 with the fifth value as 1?

A

Z = np.zeros(10); Z[4] = 1

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

How to create a vector with values ranging from 10 to 49?

A

Z = np.arange(10, 50)

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

How to reverse a vector (first element becomes last)?

A

Z = Z[::-1]

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

How to create a 3x3 matrix with values ranging from 0 to 8?

A

Z = np.arange(9).reshape(3, 3)

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

How to find indices of non-zero elements from [1,2,0,0,4,0]?

A

nz = np.nonzero([1,2,0,0,4,0])

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

How to create a 3x3 identity matrix?

A

Z = np.eye(3)

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

How to create a 3x3x3 array with random values?

A

Z = np.random.random((3,3,3))

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

How to create a 10x10 array with random values and find the minimum and maximum values?

A

Z = np.random.random((10,10)); Zmin, Zmax = Z.min(), Z.max()

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

How to create a random vector of size 30 and find the mean value?

A

Z = np.random.random(30); m = Z.mean()

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

How to create a 2D array with 1 on the border and 0 inside?

A

Z = np.ones((10,10)); Z[1:-1,1:-1] = 0

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

How to add a border (filled with 0’s) around an existing array?

A

Z = np.pad(Z, pad_width=1, mode='constant', constant_values=0) or use fancy indexing

17
Q

What is the result of 0 * np.nan?

18
Q

What is the result of np.nan == np.nan?

19
Q

What is the result of np.inf > np.nan?

20
Q

What is the result of np.nan - np.nan?

21
Q

What is the result of np.nan in set([np.nan])?

22
Q

What is the result of 0.3 == 3 * 0.1?

23
Q

How to create a 5x5 matrix with values 1,2,3,4 just below the diagonal?

A

Z = np.diag(1+np.arange(4), k=-1)

24
Q

How to create an 8x8 matrix and fill it with a checkerboard pattern?

A

Z = np.zeros((8,8), dtype=int); Z[1::2,::2] = 1; Z[::2,1::2] = 1

25
Q

How to find the index (x,y,z) of the 100th element in a (6,7,8) shape array?

A

np.unravel_index(99, (6,7,8))