Topic 5 Flashcards

1
Q

NumPy

A

NumPy is a widely used, open source, python package used
throughout the STEM community, due to its efficiency in handling
large datasets

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

How to use NumPy

A

import numpy as np

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

array

A

An array is a structure for storing and retrieving data.
Imagine as cell grid in space where each cell can hold a single element of data

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

create an array from integers

A

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

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

create an array from strings

A

array = np.array([“Nanna”, “Dan”, “Julia”, “John”])

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

create an array from a list

A

a_list = [1, 2, 3, 4, 5, 6]
an_array = np.array(a_list)

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

create a 1D array

A

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

[1 2 3]

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

create a 2D array

A

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

[[1 2 3]
[4 5 6]]

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

create a 3D array

A

array = np.array([[[1, 2, 3], [4, 5, 6]],
[[1, 2, 3], [4, 5, 6]]]

[[[1 2 3]
[4 5 6]]
[[1 2 3]
[4 5 6]]]

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

shape

A

returns the shape of an array

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

ndim

A

returns the number of dimensions of the array

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

size

A

returns the total number of elements in an array

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

dtype

A

returns the data type of elements in an array

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

create an empty array array:

A

array = np.empty(5)

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

create an array using the arange function.
Need start point, end point, and a step size:

A

array = np.arange(2, 9, 2)
[2, 4, 6, 8]

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

create an array filled with 0’s:

A

array = np.zeroes(5)
[0., 0., 0., 0., 0.]

14
Q

can arrays be indexed and sliced?

A

yes
data = np.array([1, 2, 3])
data[0:2] = [1 2]
data[1:] = data[-2:] = [2 3]
data[2] = data[-1] = 3

15
Q

Boolean index

A

can pass a Boolean mask as an index to an array which filters the array and creates a subset array

16
Q

Boolean mask

A

selects only those elements in the array that have a true value for the same index position
For Boolean masks, you must use & to represent and and | to represent or

17
Q

Element-wise arithmetic operations

A

Addition
Subtraction
Multiplication
Division
Exponentiation
Modulus

18
Q

Scalar operations

A

Addition
Subtraction
Multiplication
Division

19
Q

subarray =

A

array[boolean_mask]

19
Q

In boolean masks, you must use the bitwise logical operators:

A

& instead of and keyword
| instead of or keyword