Javatpoint Logo
Javatpoint Logo

Numpy array from existing data

NumPy provides us the way to create an array by using the existing data.

numpy.asarray

This routine is used to create an array by using the existing data in the form of lists, or tuples. This routine is useful in the scenario where we need to convert a python sequence into the numpy array object.

The syntax to use the asarray() routine is given below.

It accepts the following parameters.

  1. sequence: It is the python sequence which is to be converted into the python array.
  2. dtype: It is the data type of each item of the array.
  3. order: It can be set to C or F. The default is C.

Example: creating numpy array using the list

Output:

<class 'numpy.ndarray'>
[1 2 3 4 5 6 7]

Example: creating a numpy array using Tuple

Output:

<class 'numpy.ndarray'>
[1 2 3 4 5 6 7]

Example: creating a numpy array using more than one list

Output:

<class 'numpy.ndarray'>
[list([1, 2, 3, 4, 5, 6, 7]) list([8, 9])]

numpy.frombuffer

This function is used to create an array by using the specified buffer. The syntax to use this buffer is given below.

It accepts the following parameters.

  • buffer: It represents an object that exposes a buffer interface.
  • dtype: It represents the data type of the returned data type array. The default value is 0.
  • count: It represents the length of the returned ndarray. The default value is -1.
  • offset: It represents the starting position to read from. The default value is 0.

Example

Output:

<class 'bytes'>
[b'h' b'e' b'l' b'l' b'o' b' ' b'w' b'o' b'r' b'l' b'd']
<class 'numpy.ndarray'>

numpy.fromiter

This routine is used to create a ndarray by using an iterable object. It returns a one-dimensional ndarray object.

The syntax is given below.

It accepts the following parameters.

  1. Iterable: It represents an iterable object.
  2. dtype: It represents the data type of the resultant array items.
  3. count: It represents the number of items to read from the buffer in the array.

Example

Output:

[0. 2. 4. 6.]
<class 'numpy.ndarray'>






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA