Python at Unimelb
Digital Skills TrainingSupport
  • 👩‍💻Python Digital Skills Training
  • Welcome
    • 🧐Training overview
      • 😇About Trainer
        • 😚Python Class
        • 🎬Python Tutorial
        • ✨GitHub
    • ⚠️Eligibility and Requirements
    • 🤏Expectations
    • 🦸Support
  • Python Workshops
    • 🤖Install Python
    • 🔮Virtual Environment
    • ⛔Error
    • 🎲Introduction to Python
    • 🐢Data Structure
    • 🧠Think like Python
    • 🔢Introduction to NumPy
    • 🔢Numpy 2
    • 🐼Introduction to Pandas
    • 🐼pandas 2
    • 🐼pandas 3
Powered by GitBook
On this page
  • Table of Contents
  • Introduction to NumPy Document 📚

Was this helpful?

  1. Python Workshops

Introduction to NumPy

PreviousThink like PythonNextNumpy 2

Last updated 3 months ago

Was this helpful?

Table of Contents

In the Numpy part 1, we have covered the following topics:

  1. What is a Numpy Array?

A NumPy array is a multidimensional grid of homogeneous data elements. It is the fundamental data structure used in NumPy for numerical computations and data manipulation.

  1. Install and Import:

To utilize NumPy, first, install it using pip install Numpy. Then, in your Python script or notebook, import NumPy using import Numpy as np for convenience in referencing its functions and classes throughout your code.

  1. Applications in Numpy Array:

NumPy arrays are versatile and widely used in diverse applications such as image processing, where they facilitate efficient manipulation of pixel data. Additionally, NumPy is invaluable for handling tabular data in data analysis tasks and for processing signals and diagrams in scientific computing. Its flexibility extends to various domains, including machine learning, deep learning, data mining, data science, numerical simulations, and more.

  1. How to create Numpy Array

We explore the different ways of creating NumPy arrays, including methods for generating arrays of different dimensions such as 1D, 2D, and multidimensional arrays. From simple initialization to advanced techniques like eye, identity, and full.

  1. Mathematical Operation in Numpy Array

Mathematical operations in NumPy arrays encompass arithmetic, trigonometric, statistical, and linear algebraic functions. Discover how NumPy simplifies intricate numerical computations, rendering it a potent tool for scientific computing and data analysis.

Introduction to NumPy Document 📚

🔢
12KB
Unlocking Python Libraries Introduction to NumPy.ipynb
Python's NumPy: Building complex structures with small blocks
Numpy array is a numerical structure in Python