NumPy Asarray Function

PythonPythonBeginner
Practice Now

Introduction

In data analysis and scientific computing, the numpy library is a popular tool for faster mathematical operation. The numpy.asarray() function is used to convert the input data into a NumPy array object. The function can accept any existing data like Lists, Tuples, and ndarrays and convert it into an array. This lab will provide the step-by-step guide to using the numpy.asarray() function with examples.

VM Tips

After the VM startup is done, click the top left corner to switch to the Notebook tab to access Jupyter Notebook for practice.

Sometimes, you may need to wait a few seconds for Jupyter Notebook to finish loading. The validation of operations cannot be automated because of limitations in Jupyter Notebook.

If you face issues during learning, feel free to ask Labby. Provide feedback after the session, and we will promptly resolve the problem for you.


Skills Graph

%%%%{init: {'theme':'neutral'}}%%%% flowchart RL linux(("`Linux`")) -.-> linux/PackagesandSoftwaresGroup(["`Packages and Softwares`"]) python(("`Python`")) -.-> python/DataStructuresGroup(["`Data Structures`"]) python(("`Python`")) -.-> python/ModulesandPackagesGroup(["`Modules and Packages`"]) python(("`Python`")) -.-> python/DataScienceandMachineLearningGroup(["`Data Science and Machine Learning`"]) python(("`Python`")) -.-> python/FunctionsGroup(["`Functions`"]) numpy(("`NumPy`")) -.-> numpy/IndexingandSlicingGroup(["`Indexing and Slicing`"]) linux/PackagesandSoftwaresGroup -.-> linux/pip("`Python Package Installing`") python/DataStructuresGroup -.-> python/lists("`Lists`") python/DataStructuresGroup -.-> python/tuples("`Tuples`") python/ModulesandPackagesGroup -.-> python/importing_modules("`Importing Modules`") python/DataScienceandMachineLearningGroup -.-> python/numerical_computing("`Numerical Computing`") python/FunctionsGroup -.-> python/build_in_functions("`Build-in Functions`") numpy/IndexingandSlicingGroup -.-> numpy/bool_idx("`Boolean Indexing`") numpy/IndexingandSlicingGroup -.-> numpy/fancy_idx("`Fancy Indexing`") subgraph Lab Skills linux/pip -.-> lab-86404{{"`NumPy Asarray Function`"}} python/lists -.-> lab-86404{{"`NumPy Asarray Function`"}} python/tuples -.-> lab-86404{{"`NumPy Asarray Function`"}} python/importing_modules -.-> lab-86404{{"`NumPy Asarray Function`"}} python/numerical_computing -.-> lab-86404{{"`NumPy Asarray Function`"}} python/build_in_functions -.-> lab-86404{{"`NumPy Asarray Function`"}} numpy/bool_idx -.-> lab-86404{{"`NumPy Asarray Function`"}} numpy/fancy_idx -.-> lab-86404{{"`NumPy Asarray Function`"}} end

Install NumPy

First, we need to install the NumPy module using pip. If you don't have pip already, you can install it using the terminal.

!pip install numpy

Import Required Libraries

Next, we have to import the required NumPy library into our Python environment.

import numpy as np

Convert Python List To Numpy Array

Here's the code snippet to convert a Python list into a NumPy array.

my_list = [1, 2, 4, 5, 8, 10]
np.asarray(my_list)

Create NumPy Array From Python Tuple

In this step, we will convert a Python tuple into a NumPy array using the numpy.asarray() function.

inp = (10, 9, 1, 2, 3, 4, 5, 6, 7, 8)
a = np.asarray(inp)
print("The output is:")
print(a)
print("The datatype of output is:")
print(type(a))

Create NumPy Array Using More Than One List

In this step, we will create a NumPy array using more than one list.

l = [[1, 2, 3, 4, 5, 6, 7], [8, 9], [12, 34, 45]]
a = np.asarray(l, dtype=object)
print("The data type of output is:")
print(type(a))
print("The output array is:")
print(a)

Summary

This lab demonstrated the usage of the numpy.asarray() function. The function can accept input data that is in the form of lists, tuples of tuples, list of tuples, tuples of lists, or ndarrays and convert them into a NumPy array object. NumPy provides a lot of useful functions for working with arrays and matrices, and the numpy.asarray() function is a great tool to have when you're working with Python sequences and need to convert them into a NumPy array.

Other Python Tutorials you may like