Curriculum
Course: NumPy
Login

Curriculum

NumPy

Text lesson

Check if Array Owns its Data

As previously mentioned, copies own their data, while views do not. But how can we verify this?

Every NumPy array has a base attribute that returns None if the array owns the data. If the array does not own the data, the base attribute will reference the original object.

Example

Print the value of the base attribute to determine whether an array owns its data.

import numpy as np

arr = np.array([12345])

x = arr.copy()
y = arr.view()

print(x.base)
print(y.base)

The copy returns None, while the view returns the original array.