An in-depth guide to mastering NumPy, covering fundamental to advanced array operations for data science and numerical computing.
- Array Basics
Introduction to NumPy arrays - Arithmetic Operations
Arithmetic operations between (array & scalar) or (array & array) - Comparative Operations
Comparative operations between (array & scalar) or (array & array) - Index & Slice
Basic and advanced indexing and slicing arrays including Mask & Filters - Axes
Understanding use of axes in multi-dimensional arrays combined with methods [the hardest part in NumPy for newbies in my opinion] - Array Manipulations
Techniques for updating values, appending, inserting, reshaping, concatenating, ... - NdArray properties & methods
Comprehensive overview of properties and methods associated with NumPy arrays. - Array Creation
Various methods to create NumPy arrays (e.g.,numpy.array
,numpy.zeros
, etc.). - Mathematics
Mathematical functions and operations available in NumPy - Statistics
Statistical functions for data analysis (mean, median, variance, etc.). - Sort, Search & Count
Methods for sorting, searching, and counting elements in arrays. - Logic
Logical operations and boolean indexing with NumPy arrays. - Set
Set operations for array elements (union, intersection, difference). - Linear Algebra
Fundamental linear algebra operations using NumPy (matrix multiplication, determinants). - Structured Array
Creating and manipulating structured arrays with custom data types. - Input/Output
Techniques for reading from and writing to files using NumPy. - Random Generator
Generating random numbers and distributions with NumPy's random module. - Fourier Transform
Understanding and applying Fourier transforms in NumPy. - Efficient Computing
Strategies for optimizing performance and memory usage in NumPy operations. - Miscellaneous
Additional topics and advanced features in NumPy. - Looking Ahead
Introduction to Pandas for data manipulation and Matplotlib for data visualization.
- Programming Fundamentals
- Proficiency in Python (data types, control structures, functions, etc.).
- My Python Workshop: github.com/mr-pylin/python-workshop
- Proficiency in Python (data types, control structures, functions, etc.).
- Mathematics for Machine Learning
- Linear Algebra: Vectors, matrices, matrix operations.
- Linear Algebra Review and Reference written by Zico Kolter
- Notes on Linear Algebra written by Peter J. Cameron
- MATH 233 - Linear Algebra I Lecture Notes written by Cesar O. Aguilar
- Probability & Statistics: Probability distributions, mean/variance, etc.
- Linear Algebra: Vectors, matrices, matrix operations.
This project was developed using Python v3.12.3
. If you encounter issues running the specified version of dependencies, consider using this specific Python version.
You can install all dependencies listed in requirements.txt
using pip.
pip install -r requirements.txt
- Open the root folder with VS Code
- Windows/Linux:
Ctrl + K
followed byCtrl + O
- macOS:
Cmd + K
followed byCmd + O
- Windows/Linux:
- Open
.ipynb
files using Jupyter extension integrated with VS Code - Allow VS Code to install any recommended dependencies for working with Jupyter Notebooks.
- Note: Jupyter is integrated with both VS Code & Google Colab
- NumPy Website:
- The official website for NumPy, providing information, tutorials, and resources for the NumPy library
- Official site: numpy.org
- NumPy Documentation:
- Comprehensive guide and reference for all functionalities and features of the NumPy library
- Doc: numpy.org/doc
- NumPy Source Code:
- Over 1500 contributors are currently working on NumPy.
- Link: github.com/numpy/numpy
- Looking Ahead:
- Pandas
- A powerful, open-source data analysis and manipulation library built on top of NumPy for Python
- Official site: pandas.pydata.org
- My Pandas Workshop: Coming Soon
- MatPlotLib
- A comprehensive library for creating static, animated, and interactive visualizations in Python
- Official site: matplotlib.org
- My MatPlotLib Workshop: Coming Soon
- PyTorch
- An open-source machine learning library for Python developed by Meta AI, used for applications such as deep learning and neural networks.
- Official site: pytorch.org
- My PyTorch Workshop: github.com/mr-pylin/pytorch-workshop
- Pandas
Any mistakes, suggestions, or contributions? Feel free to reach out to me at:
I look forward to connecting with you! 🏃♂️
This project is licensed under the Apache License 2.0.
You are free to use, modify, and distribute this code, but you must include copies of both the LICENSE and NOTICE files in any distribution of your work.