Introduction to NumPy and NumPy Arrays for Beginners, Part I Python Tutorial

Опубликовано: 10 Декабрь 2018
на канале: Matt Macarty
1,757
33

Please SUBSCRIBE:
https://www.youtube.com/subscription_...
Part I in my introduction to NumPy

Working with true arrays in Python - a quick overview

See Part II here:
   • NumPy and NumPy Arrays for Beginners,...  

If you get an error after entering import numpy as np, it likely means NumPy is not installed on your machine. You can easily install it from a command prompt with the following command:

python -m pip install numpy

Numpy is the essential data library for Python. It is not part of the standard library so you will need to install it to follow along. If you have a scientific platform like Anaconda installed then you will already have Numpy. Many other libraries for example Pandas and Matplotlib borrow heavily from Numpy. Numpy adds a true array to Python and loads of convenience functionality. This tutorial introduces the Numpy array and basic operations. The follow-on video digs in a little deeper.