April 2016
Beginner
156 pages
3h 23m
English
Arrays can be created in a number of ways, for instance from other data structures, by reading files on disk, or from the Web. For the purposes of this chapter, whose aim is to familiarize us with the core characteristics of a NumPy array, we will be creating arrays using lists or various NumPy functions.
The simplest way to create an array is using the array function. To create a valid array object, arguments to array functions need to adhere to at least one of the following conditions:
__array__ method that returns a valid numpy arrayConsider the following snippet:
In [32]: x = np.array([1, 2, 3]) In [33]: y = np.array(['hello', ...
Read now
Unlock full access