Numpy Flashcards
np.array([1, 2, 3, 4], dtype=’float32’)
explicitly set the data type of the resulting array
np.array([range(i, i + 3) for i in [2, 4, 6]])
nested lists result in multi-dimensional arrays
np.zeros(10, dtype=int)
Create a length-10 integer array filled with zeros
np.ones((3, 5), dtype=float)
Create a 3x5 floating-point array filled with ones
np.full((3, 5), 3.14)
Create a 3x5 array filled with 3.14
np.arange(0, 20, 2)
# Create an array filled with a linear sequence # Starting at 0, ending at 20, stepping by 2 # (this is similar to the built-in range() function)
np.linspace(0, 1, 5)
Create an array of five values evenly spaced between 0 and 1
np.random.random((3, 3))
# Create a 3x3 array of uniformly distributed # random values between 0 and 1
np.random.normal(0, 1, (3, 3))
# Create a 3x3 array of normally distributed random values # with mean 0 and standard deviation 1
np.random.randint(0, 10, (3, 3))
Create a 3x3 array of random integers in the interval [0, 10)
np.eye(3
Create a 3x3 identity matrix
np.empty(3)
# Create an uninitialized array of three integers # The values will be whatever happens to already exist at that memory location
x2[1:2, 0]
In a multi-dimensional array, items can be accessed using a comma-separated tuple of indices
x2[0:, 0] = 15.8
x2
Values can also be modified using any of the above index notation
x[1::2]
every other element, starting at index 1
x[:2:-1]
all elements, reversed
x2[:3, ::2]
all rows, every other column
x2[0, :]
first row of x2
x2[:, 0]
first column of x2
x2_sub_copy = x2[:2, :2].copy()
explicitly copy the data within an array or a subarray
grid = np.arange(1, 10).reshape((3, 3))
the size of the initial array must match the size of the reshaped array
x[np.newaxis, :]
row vector via newaxis
np.concatenate([grid, grid], axis=1)
concatenate along the second axis (zero-indexed)
np.vstack([x, grid])
vertically stack the arrays
np.hstack([grid, y])
horizontally stack the arrays
x = [1, 2, 3, 99, 99, 3, 2, 1]
x1, x2, x3 = np.split(x, [3, 6])
opposite of concatenation is splitting
pass a list of indices giving the split points
upper, lower = np.vsplit(grid, [2])
left, right = np.hsplit(grid, [1])
N + 1 subarrays. The related functions np.hsplit and np.vsplit are similar