Category: Numpy Tutorial

Numpy Stands for Numerial Python. It is special python programming package for data science projects. It is used to operate high level mathematical with arrays and matrices. It was developed by Jim Hugunin.
• It has powerful n dimensional arrays
• It execute very fast.
• It used less memory for variable storage
• It’s Mainly useful for linear algebra, Fourier transform and random numbers

Installation of Numpy Package:
You need to install by using pip command. Execute the below command to install numpy package.
python -m pip install –user numpy

Get started with numpy:
You need to import numpy package in your program to take advantage of numpy.
Import numpy as np
After importing numpy library you can call functions with np object.