Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
70 views
Python Numpy Tutorial by Justin Johnson
Python Numpy Tutorial by Justin Johnson
Uploaded by
Levema Sira
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Python Numpy Tutorial by Justin Johnson For Later
Download
Save
Save Python Numpy Tutorial by Justin Johnson For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
70 views
Python Numpy Tutorial by Justin Johnson
Python Numpy Tutorial by Justin Johnson
Uploaded by
Levema Sira
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Python Numpy Tutorial by Justin Johnson For Later
Carousel Previous
Carousel Next
Save
Save Python Numpy Tutorial by Justin Johnson For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 27
Search
Fullscreen
sizaz021 Python Numpy Tutorial with Jupyter and Colab) [esveeaTa) olutional Neural Networks for Visual Recognition Python Numpy Tutorial (with Jupyter and Colab) EE This tutorial was originally contributed by Justin Johnson We will use the Python programming language for all assignments in this course, Python is a great general-purpose programming language on its own, but with the help of a few popular libraries (numpy, scipy, matplotlib) it becomes a powerful environment for scientific computing, We expect that many of you will have some experience with Python and numpy; for the rest of you, this section will serve as a quick crash course on both the Python programming language and its use for scientific computing. We'll also introduce notebooks, which are a very convenient way of tinkering with Python code. Some of you may have previous knowledge in a different language, in which case we also recommend referencing: NumPy for Matlab users, Python for R users, and/or Python for SAS users. Table of Contents + Jupyter and Colab Notebooks * Python © Python versions © Basic data types © Containers = Lists * Dictionaries = Sets * Tuples © Functions © Classes * Numpy © Arrays © Array indexing © Datatypes © Array math Back to Top hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math wersiaeiz0a1 Python Numay Tora (th Jupyter and Colas) © Broadcasting © Numpy Documentation + sciPy © Image operations © MATLAB files © Distance between points + Matplotlib © Plotting © Subplots © Images Jupyter and Colab Notebooks Before we dive into Python, we'd like to briefly talk about notebooks, A Jupyter notebook lets you write and execute Python code /ocaily in your web browser. Jupyter notebooks make it very easy to tinker with code and execute it in bits and pieces; for this reason they are widely used in scientific computing. Colab on the other hand is Google's flavor of Jupyter notebooks that is particularly suited for machine learning and data analysis and that runs entirely in the cloud. Colab is basically Jupyter notebook on steroids: it's free, requires no setup, comes preinstalled with many packages, is easy to share with the world, and benefits from free access to hardware accelerators like GPUs and TPUs (with some caveats) Run Tutorial in Colab (recommended). If you wish to run this tutorial entirely in Colab, click the Open in Colab badge at the very top of this page Run Tutorial in Jupyter Notebook. If you wish to run the notebook locally with Jupyter, make sure your virtual environment is installed correctly (as per the setup instructions), activate it, then run pip install notebook to install Jupyter notebook. Next, open the notebook and download it to a directory of your choice by right-clicking on the page and selecting save Page As .Then cd to that directory andrun jupyter notebook Back to Top hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math 2075128/2021 Python Numpy Tutoral (wth Jupyter and Colab) 08 = merase x4 © > © © locanosssesanee © ome Csupyter Co This should automatically launch a notebook server at http://localhost:8888.. If everything worked correctly, you should see a screen like this, showing all available notebooks in the current directory. Click jupyter-notebook-tutorial.ipynb and follow the instructions in the notebook. Otherwise, you can continue reading the tutorial with code snippets below. Python Python is @ high-level, dynamically typed multiparadigm programming language. Python code is often said to be almost like pseudocode, since it allows you to express very powerful ideas in very few lines of code while being very readable. As an example, here is an implementation of the classic quicksort algorithm in Python: def quicksort(arr): if len(arr) <= 1: return arr pivot = arr[len(arr) // 2] left [x for x in arr if x < pivot] middle = [x for x in arr if x == pivot] right = [x for x in arr if x > pivot] return quicksort(left) + middle + quicksort (right) print (quicksort([3,6,8,10,1,2,1])) # Prints "[1, 1, 2, 3, 6, 8, 10] Back to Top hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math 3075128/2021 Python Numpy Tutoral (wth Jupyter and Colab) Python versions As of Janurary 1, 2020, Python has officially dropped support for python2 . For this class all code will use Python 3.7. Ensure you have gone through the setup instructions and correctly installed a python3 virtual environment before proceeding with this tutorial. You can double- check your Python version at the command line after activating your environment by running python --version Basic data types Like most languages, Python has a number of basic types including integers, floats, booleans, and strings, These data types behave in ways that are familiar from other programming languages. Numbers: Integers and floats work as you would expect from other languages: x=3 print(type(x)) # Prints “
" print (x) # Prints "3" print(x +1) # Addition; prints print(x - 1) # Subtraction; prints print(x * 2) # Multiplication; prints "6" print(x ** 2) Exponentiation; prints "9" x4e1 print(x) # Prints "4" x 2 2 print(x) # Prints “s" y=2.5 print(type(y)) # Prints “
" print(y, y +1, y * 2, y ** 2) # Prints "2.5 3.5 5.0 6.25" Note that unlike many languages, Python does not have unary inerernent ( x++ ) or decrement (e- ) operators. Python also has builtin types for complex numbers; you can find all of the details in the documentation Booleans: Python implements all of the usual operators for Boolean logic, but uses English words rather than symbols ( &&, || , etc.) t = True f = False Back to Top nts "
" print(type(t)) # P, hitpsies281n github iolpytnor-rumpy-tutoria#numpy-math 4275128/2021 Python Numpy Tutorial with Jupyter and Colab) print(t and #) # print(t or f) # Logical oR; prints “True” # Logical AND; prints “False print(not t) print(t != f) Logical NOT; prints “False” Logical XOR; prints “True” Strings: Python has great support for strings: hello = ‘hello’ —# String Literals can use single quotes world = “world” # or double quotes; it does not matter. print(hello) # Prints “hello” print(len(hello)) # String Length; prints "5" hw = hello + ' ' print(hw) # prints “hello world” hwi2 = '%s %s Xd‘ % (hello, world, 12) # sprintf style string formatting print(hwi2) # prints "hello world 12" + world # String concatenation String objects have a bunch of useful methods; for example s = “hello” print(s.capitalize()) # Capitalize a string; prints "Hello" print(s.upper()) # Convert a string to uppercase; prints "HELLO" print(s.rjust(7)) # Right-justify a string, padding with spaces; prints print(s.center(7)) # Center a string, padding with spaces; prints " hell print(s.replace('l', ‘(ell)')) # Replace all instances of one substring wit # prints “he(ell)(elL)o" print(' world ‘.strip()) # Strip Leading and trailing whitespace; prints You can find a list of all string methods in the documentation. Containers Python includes several builtin container types: lists, dictionaries, sets, and tuples. Lists A list is the Python equivalent of an array, but is resizeable and can contain elements of different types: xs =[3, 1, 2] # Create a List print(xs, xs[2]) # Prints "[3, 1, 2] 2 Back to Top print(xs[-1]) # Negative indices count from the end of the List "BRINE hitpsies281n github iolpytnor-rumpy-tutoria#numpy-math sersvzerae21 Python Numpy Tutoral (wih Jupyer and Colb) xs[2] = ‘foo! # Lists can contain elements of different types print (xs) Prints "[3, 1, ‘foo']" xs.append('bar') # Add a new element to the end of the List print (xs) # Prints "[3, 1, ‘foo’, ‘bar']” x = xs.pop() # Remove and return the Last element of the List print(x, xs) # Prints “bar [3, 1, 'foo']” As usual, you can find all the gory details about lists in the documentation. Slicing: In addition to accessing list elements one at a time, Python provides concise syntax to access sublists; this is known as slicing. ums = list(range(5)) # range is a built-in function that creates a List print (nuns) # Prints “[@, 1, 2, 3, 4]" print (nums[2:4]) # Get a slice from index 2 to 4 (exclusive); print print (nums[2:]) # Get a slice from index 2 to the end; prints “[2, print (nums[:2]) # Get a slice from the start to index 2 (exclusive print (nums[:]) # Get a slice of the whole List; prints "[@, 1, 2, print (nums[:-1]) # Slice indices can be negative; prints "[@, 1, 2, nums[2:4] = [8, 9] # Assign a new sublist to a slice print (nuns) # Prints "[0, 1, 8 9, 4] We will see slicing again in the context of numpy arrays Loops: You can loop over the elements of a list like this: animals = [‘cat', ‘dog’, ‘monkey"] for animal in animals: print(animal) # Prints "cat", “dog”, "monkey", each on its own Line. If you want access to the index of each element within the body of a loop, use the builtin enumerate function’ animals = ['cat', ‘dog’, ‘monkey'] for idx, animal in enumerate(animals): print('#%d: %s' % (idx + 1, animal)) # Prints "#1: cat", "#2: dog", "#3: monkey", each on its own Line List comprehensions: When programming, frequently we want to transform one Back to Top into another. As a simple example, consider the following code that compusce -oquure hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math err5128/2021 Python Numpy Tutorial with Jupyter and Colab) numbers; nums = [2, 1, 2, 3, 4] squares = [] for x in nums: squares.append(x ** 2) print(squares) # Prints [0, 1, 4, 9, 16] You can make this code simpler using a list comprehension: nums = [@, 1, 2, 3, 4] squares = [x ** 2 for x in nums] print(squares) # Prints [@, 1, 4, 9, 16] List comprehensions can also contain conditions: nums = [8, 1, 2, 3, 4] even_squares = [x ** 2 for x in nums if x % 2 print(even_squares) # Prints "[0, 4, 16]" Dictionaries A dictionary stores (key, value) pairs, similar toa Map in Java or an object in Javascript. You can use it like this: d= (‘cat': ‘cute’, ‘dog’: ‘furry'} # Create a new dictionary with some dat print(d[‘cat']) # Get an entry from a dictionary; prints "cute" print(‘cat' ind) # Check if a dictionary has a given key; prints “True” d[‘fish'] = ‘wet' # Set an entry in a dictionary print (d[ ‘fish’ ]) # Prints “wet” # print(d['monkey’J) # KeyError: ‘monkey’ not a key of d print(d.get('monkey’, ‘N/A')) # Get an element with a default; prints print(d.get("fish’, ‘N/A')) # Get an element with a default; prints " del d['fish"] # Remove an element from a dictionary print(d.get('fish', 'N/A')) # "fish" is no Longer a key; prints "N/A" You can find all you need to know about dictionaries in the cocumentation. Loops: It is easy to iterate over the keys in a dictionary: Beck to Top hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math yer5128/2021 Python Numpy Tutoral with Jupyter and Colab) d= (‘person': 2, ‘cat': 4, ‘spider’: 8} for animal in legs = d[animal] print('A %s has %d legs’ % (animal, legs)) # Prints "A person has 2 Legs", “A cat has 4 Legs", "A spider has 8 Legs” If you want access to keys and their corresponding values, use the items method: d= {‘person': 2, ‘cat': 4, ‘spider’: 8} for animal, legs in d.items(): print('A %s has %d legs’ % (animal, legs)) # Prints "A person has 2 Legs", "A cat has 4 Legs", "A spider has 8 Legs” Dictionary comprehensions: These are sirnilar to list comprehensions, but allow you to easily construct dictionaries. For example: nums = [@, 1, 2, 3, 4] even_num_to_square = {x: x ** 2 for x in nums if x % 2 print(even_num_to_square) # Prints "{@: 9, 2: 4, 4: 16)" Sets A set is an unordered collection of distinct elements. As a simple example, consider the following: animals = {‘cat', ‘dog’} print(‘cat’ in animals) # Check if an element is in a set; prints "True" print('fish' in animals) # prints "False animals .add(' fish") # Add an element to a set print(‘fish’ in animals) # Prints “True” print (en(animals)) # Number of elements in a set; prints "3" animals .add(‘ cat") # Adding an element that is already in the set doe print (1en(animals)) # Prints "3" animals.remove(' cat’) # Remove an element from a set print (len(animals) ) # Prints "2" As usual, everything you want to know about sets can be found in the documentation Loops: Iterating over a set has the same syntax as iterating over a list; however S Back to Top unordered, you cannot make assumptions about the order in which you visit the-erernents or hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math sa5128/2021 Python Numpy Tutoral (wth Jupyter and Colab) the set animals = {'cat', ‘dog’, ‘fish'} for idx, animal in enumerate(animals): print(‘#%d: %s' % (idx + 1, animal)) # Prints “#1: fish", "#2: dog", “#3: cat” Set comprehensions: Like lists and dictionaries, we can easily construct sets using set comprehensions: from math import sqrt nums = {int(sqrt(x)) for x in range(3e)} print(nums) # Prints "{@, 1, 2, 3, 4, 5}" Tuples A tuple is an (immutable) ordered list of values. A tuple is in many ways similar to a list; one of the most important differences is that tuples can be used as keys in dictionaries and as elements of sets, while lists cannot. Here is a trivial example: d= {(x, x #1): x for x dn range(1@)} # Create a dictionary with tuple key t= (5, 6) # Create a tuple print(type(t)) # Prints "
" print(d[t]) # Prints "5" print(d[(, 2)]) # Prints "2 The documentation has more information about tuples. Functions Python functions are defined using the def keyword. For example: def sign(x): if x > 0: return ‘positive’ elif x < return ‘negative’ else: return ‘zero’ Back to Top hitpsies281n github iolpytnor-rumpy-tutoria#numpy-math 9127svzerae21 Python Numpy Tutoral (wih Jupyer and Colb) for x in [-1, 9, 1]: print (sign(x)) # Prints “negative”, “zero”, “positive” We will often define functions to take optional keyword arguments, like this: def hello(name, loud="aise) if loud: print('HELLO, %s!' % name.upper()) else: print(‘Hello, %s' % name) hello('Bob') # Prints "Hello, Bob” hello('Fred', loud=True) # Prints “HELLO, FRED!" There is a lot more information about Python functions in the documentation. Classes The syntax for defining classes in Python is straightforward class Greeter(object): # Constructor def _init_ (self, name): self.name = name # Create an instance variable # Instance method def greet(self, loud=False): if loud: print(‘HELLO, %s!' % self.name.upper()) else: print(‘Hello, %s' % self.name) g = Greeter(‘Fred') # Construct an instance of the Greeter class g-greet() # Call an instance method; prints “Hello, Fred” gB-greet(loud=True) # Call an instance method; prints "HELLO, FRED!" You can read a lot more about Python classes in the documentation. Back to Top hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math 10275128/2021 Python Numpy Tutorial with Jupyter and Colab) Numpy Numpy is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with these arrays. If you are already familiar with MATLAB, you might find this tutorial useful to get started with Numpy. Arrays Anumpy array is a grid of values, all of the same type, and is indexed by a tuple of nonnegative integers. The number of dimensions is the rank of the array; the shape of an array is a tuple of integers giving the size of the array along each dimension. We can initialize numpy arrays from nested Python lists, and access elements using square brackets: import numpy as np a = np.array([1, 2, 3]) # Create a rank 1 array print (type(a)) # Prints “
" print (a. shape) # Prints "(3,)" print(a(o], a{1], a[2]) # Prints "1 2 3" af] = 5 # Change an element of the array print(a) # Prints "[5, 2, 3]” b = np.array([[1,2,3],[4,5,6]]) # Create a rank 2 array print(b. shape) # Prints "(2, 3)" print(b[9, 2], b[@, 1], b[1, @]) # Prints "12 4" Numpy also provides many functions to create arrays’ import numpy as np a = np.zeros((2,2)) # Create an array of all zeros print(a) # Prints "[[ @. @.] # [0 0] b = np.ones((1,2)) # Create an array of all ones print (b) # Prints "[[ 4. 1.]] € = np.full((2,2), 7) # Create a constant array print(c) # Prints “[[ 7. 7.] # [7 7.]]" Back to Top hitpsies281n github iolpytnor-rumpy-tutoria#numpy-math wer5128/2021 Python Numpy Tutorial with Jupyter and Colab) d= np.eye(2) # Create a 2x2 identity matrix print(d) # Prints "[[ 1. @.] # [@. 1.)]" @ = np.random.random((2,2)) # Create an array filled with random values print(e) # Might print "[[ @.91940167 0.08143941] @.68744134 0, 87236687]]" You can read about other methods of array creation in the documentation. Array indexing Numpy offers several ways to index into arrays. Slicing: Similar to Python lists, numpy arrays can be sliced. Since arrays may be multidirnensional, you must specify a slice for each dimension of the array: import numpy as np # Create the following rank 2 array with shape (3, 4) [[1 2 3 4] [5 67 8] [ 9 10 11 12] = np.array([[1,2,3,4], [5,6,7,8], [9,10,11,12]]) wea # Use slicing to pull out the subarray consisting of the first 2 rows # and columns 1 and 2; b is the following array of shape (2, 2): # [[2 3] # [6 7]] b = a[:2, 1:3] # A slice of an array is a view into the same data, so modifying it # will modify the original array. print(a[2, 1]) # Prints "2" ble, @] = 77 —# b[@, 0] is the same piece of data as af, 1] print(a[2, 1]) # Prints "77" You can also mix integer indexing with slice indexing, However, doing so will yield an array of lower rank than the original array. Note that this is quite different from the way that MATLAB handles array slicing import nunpy as np Back to Top hitpsies281n github iolpytnor-rumpy-tutoria#numpy-math vo27srzai2021 Python Numpy Tutorial (with Jupyter and Golab) Create the following rank 2 array with shape (3, 4) [[1 2 3 4] [5 67 8] [ 9 19 11 12]] = np.array([[1,2,3,4], [5,6,7,8], [9,10,11,12]]) vee aH Two ways of accessing the data in the middle row of the array. Mixing integer indexing with slices yields an array of Lower rank, while using only slices yields an array of the same rank as the original array: row_r1 = a[1, :] | # Rank 1 view of the second row of a row_r2 = a[1:2, :] # Rank 2 view of the second row of a print(row_r1, row_ri.shape) # Prints "[5 6 7 8] (4,)" print(row_r2, row_r2.shape) # Prints "[[5 6 7 8]] (1, 4)" # # # # # We can make the same distinction when accessing columns of an array: col_r1 = a[:, 1] col_r2 = a[:, 1:2] print(col_ri, col_r1.shape) # Prints “[ 2 6 19] (3,)" print(col_r2, col_r2.shape) # Prints "[[ 2] # [ 6] * [10] (3, 1)" Integer array indexing: When you index into numpy arrays using slicing, the resulting array view will always be a subarray of the original array. In contrast, integer array indexing allows you to construct arbitrary arrays using the data from another array. Here is an example: import numpy as np a = np.array([[1,2], [3, 4], [5, 6]]) # An example of integer array indexing. # The returned array will have shape (3,) and print(a[[2, 1, 2], [@, 1, @]]) # Prints "[1 4 5]" # The above example of integer array indexing is equivalent to this: print(np.array([al®, @], a[1, 1], a[2, @]])) # Prints "[1 4 5)" # When using integer array indexing, you can reuse the same # element from the source array: print(a[[9, ®], [1, 1]]) # Prints “(2 2)” # Equivalent to the previous integer array indexing example print(np.array({a{®, 1], a[@, 1]])) # Prints "(2 2)" Back to Top hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math 13275128/2021 Python Numpy Tutorial with Jupyter and Colab) One useful trick with integer array indexing is selecting or mutating one element from each row of a matrix: import nunpy as np # Create a new array from which we will select elements a = np.array([[1,2,3], [45,6], [78,9], [10, 11, 12]]) print(a) # prints “array([[ 1, 2, 3], # [4 5, 6], # [7 8& 9], # [1@, 11, 12]])" # Create an array of indices b = np.array([2, 2, @ 1]) # Select one element from each row of a using the indices in b print(a[np.arange(4), b]) # Prints "[ 1 6 7 11)" # Mutate one element from each row of a using the indices in b a[np.arange(4), b] += 10 print(a) # prints “array([[11, 2, 3], # [4, 5, 16], # (17, 8 9], # (18, 21, 12]]) Boolean array indexing: Boolean array indexing lets you pick out arbitrary elernents of an array. Frequently this type of indexing is used to select the elements of an array that satisfy some condition. Here is an example: import numpy as np a = np.array([[1,2], [3, 4], [5, 6]]) bool_idx = (a > 2) # Find the elements of a that are bigger than 2; # this returns a numpy array of Booleans of the same # shape as a, where each slot of bool_idx tells # whether that element of a is > 2. print (bool_idx) # Prints "[[False False] # [ True True] # [ True True]]" Back to Top # We use boolean array indexing to construct a rank 1 array hitpsies281n github iolpytnor-rumpy-tutoria#numpy-math sarsvzerae21 Python Numpy Tutoral (wih Jupyer and Colb) # consisting of the elements of a corresponding to the True values # of bool_idx print(a[bool_idx]) # Prints "[3 4 5 6]" # We can do all of the above i print(a[a > 2]) # Prints " a single concise statement: [3 45 6] For brevity we have left out a lot of details about numpy array indexing; if you want to know more you should read the documentation, Datatypes Every numpy array is a grid of elements of the same type. Numpy provides a large set of numeric datatypes that you can use to construct arrays. Numpy tries to guess a datatype when you create an array, but functions that construct arrays usually also include an optional argument to explicitly specify the datatype. Here is an example: import numpy as np X = np.array([1, 2]) # Let numpy choose the datatype print(x.dtype) # Prints "int6a” xX = np.array([1.0, 2.0]) # Let numpy choose the datatype print(x.dtype) # Prints “floatea” X = np.array([1, 2], dtype=np.inté4) # Force a particular datatype print (x.dtype) # Prints "intea” You can read all about numpy datatypes in the documentation Array math Basic mathematical functions operate elernentwise on arrays, and are available both as operator overloads and as functions in the numpy module: import numpy as np np.array([{[{1,2],[3,4]], dtypesnp.floate4) np.array([[5,6],[7,8]], dtypesnp.floate4) # ELementwise sum; both produce the array Back to Top #[[ 6.0 8.0] hitpsses231n github iolpytnor-numpytutrianumpy-math 127svzerae21 Python Numpy Tutor with Jupyer and Cota) # [10.0 12.6]] print(x + y) print(np.add(x, y)) # Elementwise difference; both produce the array # [[-4.0 -4.0] # [-4.0 -4.0]] print(x - y) print(np.subtract(x, y)) # Elementwise product; both produce the array # [[ 5.0 12.6] # [21.0 32.0]] print(x * y) print(np.multiply(x, y)) # Elementwise division; both produce the array # [[ 0.2 0, 33333333] # [ 0.42857143 0.5 1] print(x / y) print(np.divide(x, y)) # ELementwise square root; produces the array #[[1 1.41421356] # [ 1.73205081 2 W print(np.sqrt(x)) Note that unlike MATLAB, * is elementwise multiplication, not matrix multiplication. We instead use the dot function to compute inner products of vectors, to multiply a vector by a matrix, and to multiply matrices, dot is available both as a function in the numpy module and as an instance method of array objects: import numpy as np np-array({(1,2],[3.4]]) np.array([[5,6],[7.8]]) < 0 np.array([9,10]) np.array([11, 12]) # Inner product of vectors; both produce 219 print(v.dot(w)) print(np.dot(v, w)) # Matrix / vector product; both produce the rank 1 array [29 67] |_B@ck 0 Top hitpsies281n github iolpytnor-rumpy-tutoria#numpy-math 1627sizar2021 Python Numpy Tutorial (with Jupyter and Golab) print(x.dot(v)) print(np.dot(x, v)) # Matrix / matrix product; both produce the rank 2 array # [[19 22] # [43 50]] print(x.dot(y)) print(np.dot(x, y)) Numpy provides many useful functions for performing computations on arrays; one of the most useful is sum import numpy as np x = np.array([[1,2],[3,4]]) print(np.sum(x)) # Compute sum of aLl elements; prints "10" print(np.sum(x, axis=0)) # Compute sum of each column; prints "[4 6]” print(np.sum(x, axis=1)) # Compute sum of each row; prints "[3 7]" You can find the full ist of mathematical functions provided by numpy in the docurnentation Apart from computing mathematical functions using arrays, we frequently need to reshape or otherwise manipulate data in arrays, The simplest example of this type of operation is transposing a matrix; to transpose a matrix, simply use the T attribute of an array object: import numpy as np x = np.array([[1,2], [3,4]]) print(x) # Prints “[[1 2] # print(x.1) # Prints "[[1 3] # [2 4]]" # Note that taking the transpose of a rank 1 array does nothing v = np.array([1,2,3]) print(v) # Prints “[1 2 3)" print(v.t) # Prints “[1 2 3)" Numpy provides many mote functions for manipulating arrays; you can see the full list in the documentation. Back to Top hitpsies281n github iolpytnor-rumpy:tutoriai#mumpy-math wer5128/2021 Python Numpy Tutorial with Jupyter and Colab) Broadcasting Broadcasting is a powerful mechanism that allows numpy to work with arrays of different shapes when performing arithmetic operations. Frequently we have a smaller array and a larger array, and we want to use the smaller array multiple times to perform some operation on the larger array For example, suppose that we want to add a constant vector to each row of a matrix. We could do it lke this: import numpy as np L add the vector v to each row of the matrix x, storing the result in the matrix y np-array([[1,2,3], [4,556], [7,89], [18 11, 12]]) np.array([1, @, 1]) np.empty_like(x) # Create an empty matrix with the same shape as x <
You might also like
Colab Tutorial
PDF
No ratings yet
Colab Tutorial
26 pages
Ultimate Step by Step Guide To Machine Learning Using Python Predictive
PDF
100% (2)
Ultimate Step by Step Guide To Machine Learning Using Python Predictive
56 pages
Python For Data Science Extended Ebook PDF
PDF
100% (4)
Python For Data Science Extended Ebook PDF
56 pages
Python Numpy Tutorial (With Jupyter and Colab)
PDF
No ratings yet
Python Numpy Tutorial (With Jupyter and Colab)
29 pages
Python Numpy-Github - Io
PDF
No ratings yet
Python Numpy-Github - Io
25 pages
Python Numpy Tutorial
PDF
No ratings yet
Python Numpy Tutorial
26 pages
python-numpy-tutorial
PDF
No ratings yet
python-numpy-tutorial
28 pages
Python Numpy Tutorial (CS231n-Stanford)
PDF
No ratings yet
Python Numpy Tutorial (CS231n-Stanford)
27 pages
Python Numpy Co Ban
PDF
No ratings yet
Python Numpy Co Ban
26 pages
Python Numpy Tutorial
PDF
No ratings yet
Python Numpy Tutorial
28 pages
Python Numpy Tutorial
PDF
No ratings yet
Python Numpy Tutorial
22 pages
NumPy, SciPy and MatPlotLib
PDF
100% (1)
NumPy, SciPy and MatPlotLib
18 pages
Python Review
PDF
No ratings yet
Python Review
50 pages
oG1M8adGXOGe DHBiQVrXgXHO6GrHU01tHWZgd tpRqUW65xGX9ufzrZMtM6hjBWlvlYViPn6r2Cgghq2M8oiXNNdf0HeL-DQvJKWM
PDF
No ratings yet
oG1M8adGXOGe DHBiQVrXgXHO6GrHU01tHWZgd tpRqUW65xGX9ufzrZMtM6hjBWlvlYViPn6r2Cgghq2M8oiXNNdf0HeL-DQvJKWM
42 pages
Discrete Structures Lab 1 Python Basics: 1 Python Installation 2 Python Tutorial
PDF
No ratings yet
Discrete Structures Lab 1 Python Basics: 1 Python Installation 2 Python Tutorial
8 pages
664 PythonBasics PDF
PDF
100% (1)
664 PythonBasics PDF
42 pages
Python Basics (By Mark Wickert)
PDF
No ratings yet
Python Basics (By Mark Wickert)
42 pages
Intro To Scientific Python (2018-01-23) PDF
PDF
No ratings yet
Intro To Scientific Python (2018-01-23) PDF
16 pages
python notes sarang sir (1)
PDF
No ratings yet
python notes sarang sir (1)
24 pages
Python Basics: Before Numpy
PDF
No ratings yet
Python Basics: Before Numpy
49 pages
Numpy and Matplotlib: Purushothaman.V.N March 10, 2011
PDF
No ratings yet
Numpy and Matplotlib: Purushothaman.V.N March 10, 2011
27 pages
Python Packages Class 10
PDF
No ratings yet
Python Packages Class 10
35 pages
AI/ML python modules
PDF
No ratings yet
AI/ML python modules
17 pages
Python Pres
PDF
No ratings yet
Python Pres
28 pages
Machine Learning Lab Manual
PDF
No ratings yet
Machine Learning Lab Manual
49 pages
Numpy User Guide: Release 2.0.0.Dev-4Fb84E7
PDF
No ratings yet
Numpy User Guide: Release 2.0.0.Dev-4Fb84E7
107 pages
Python CrashCourse
PDF
No ratings yet
Python CrashCourse
98 pages
01 Introduction to Python
PDF
No ratings yet
01 Introduction to Python
36 pages
vertopal.com_Ch02-statlearn-lab
PDF
No ratings yet
vertopal.com_Ch02-statlearn-lab
58 pages
Numpy-User-1 10 1
PDF
No ratings yet
Numpy-User-1 10 1
107 pages
Basics of Python
PDF
No ratings yet
Basics of Python
8 pages
ML Lab Manual
PDF
No ratings yet
ML Lab Manual
53 pages
Python (2)
PDF
No ratings yet
Python (2)
25 pages
Python Refresher Notes
PDF
No ratings yet
Python Refresher Notes
292 pages
Python_Tutorial
PDF
No ratings yet
Python_Tutorial
29 pages
Python (3) Leaflet: Roland Becker December 16, 2020
PDF
No ratings yet
Python (3) Leaflet: Roland Becker December 16, 2020
15 pages
sci_python
PDF
No ratings yet
sci_python
54 pages
quickStartGuide Py
PDF
No ratings yet
quickStartGuide Py
30 pages
Python
PDF
No ratings yet
Python
61 pages
NumPy User Guide
PDF
No ratings yet
NumPy User Guide
111 pages
Python Numpy Primer
PDF
No ratings yet
Python Numpy Primer
54 pages
phys430_python
PDF
No ratings yet
phys430_python
32 pages
Basic Python For Scientists: Pim Schellart May 27, 2010
PDF
No ratings yet
Basic Python For Scientists: Pim Schellart May 27, 2010
21 pages
Introduction To Machine Learning Report 1
PDF
No ratings yet
Introduction To Machine Learning Report 1
17 pages
G10 Python 2
PDF
No ratings yet
G10 Python 2
64 pages
Machine Learning and Pattern Recognition Programming
PDF
No ratings yet
Machine Learning and Pattern Recognition Programming
4 pages
Introduction To Python
PDF
No ratings yet
Introduction To Python
16 pages
Introduction To Python
PDF
No ratings yet
Introduction To Python
53 pages
Unit 4 - DT - Final
PDF
No ratings yet
Unit 4 - DT - Final
132 pages
PyTorch - Advanced Deep Learning
PDF
No ratings yet
PyTorch - Advanced Deep Learning
237 pages
ML Lab File Vijay Kumar
PDF
No ratings yet
ML Lab File Vijay Kumar
27 pages
Python CheatSheet - Sahil
PDF
No ratings yet
Python CheatSheet - Sahil
8 pages
User Guide NumPy
PDF
No ratings yet
User Guide NumPy
93 pages
Topic 1 IntroductionToNumpy-2
PDF
No ratings yet
Topic 1 IntroductionToNumpy-2
7 pages
My Book of Python Computing - Abhijit Kar Gupta
PDF
50% (2)
My Book of Python Computing - Abhijit Kar Gupta
385 pages
Learn PythonArrays and vectorization (1)
PDF
No ratings yet
Learn PythonArrays and vectorization (1)
21 pages
Python Tutorial
PDF
No ratings yet
Python Tutorial
114 pages
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
Colab Tutorial
PDF
Colab Tutorial
Ultimate Step by Step Guide To Machine Learning Using Python Predictive
PDF
Ultimate Step by Step Guide To Machine Learning Using Python Predictive
Python For Data Science Extended Ebook PDF
PDF
Python For Data Science Extended Ebook PDF
Python Numpy Tutorial (With Jupyter and Colab)
PDF
Python Numpy Tutorial (With Jupyter and Colab)
Python Numpy-Github - Io
PDF
Python Numpy-Github - Io
Python Numpy Tutorial
PDF
Python Numpy Tutorial
python-numpy-tutorial
PDF
python-numpy-tutorial
Python Numpy Tutorial (CS231n-Stanford)
PDF
Python Numpy Tutorial (CS231n-Stanford)
Python Numpy Co Ban
PDF
Python Numpy Co Ban
Python Numpy Tutorial
PDF
Python Numpy Tutorial
Python Numpy Tutorial
PDF
Python Numpy Tutorial
NumPy, SciPy and MatPlotLib
PDF
NumPy, SciPy and MatPlotLib
Python Review
PDF
Python Review
oG1M8adGXOGe DHBiQVrXgXHO6GrHU01tHWZgd tpRqUW65xGX9ufzrZMtM6hjBWlvlYViPn6r2Cgghq2M8oiXNNdf0HeL-DQvJKWM
PDF
oG1M8adGXOGe DHBiQVrXgXHO6GrHU01tHWZgd tpRqUW65xGX9ufzrZMtM6hjBWlvlYViPn6r2Cgghq2M8oiXNNdf0HeL-DQvJKWM
Discrete Structures Lab 1 Python Basics: 1 Python Installation 2 Python Tutorial
PDF
Discrete Structures Lab 1 Python Basics: 1 Python Installation 2 Python Tutorial
664 PythonBasics PDF
PDF
664 PythonBasics PDF
Python Basics (By Mark Wickert)
PDF
Python Basics (By Mark Wickert)
Intro To Scientific Python (2018-01-23) PDF
PDF
Intro To Scientific Python (2018-01-23) PDF
python notes sarang sir (1)
PDF
python notes sarang sir (1)
Python Basics: Before Numpy
PDF
Python Basics: Before Numpy
Numpy and Matplotlib: Purushothaman.V.N March 10, 2011
PDF
Numpy and Matplotlib: Purushothaman.V.N March 10, 2011
Python Packages Class 10
PDF
Python Packages Class 10
AI/ML python modules
PDF
AI/ML python modules
Python Pres
PDF
Python Pres
Machine Learning Lab Manual
PDF
Machine Learning Lab Manual
Numpy User Guide: Release 2.0.0.Dev-4Fb84E7
PDF
Numpy User Guide: Release 2.0.0.Dev-4Fb84E7
Python CrashCourse
PDF
Python CrashCourse
01 Introduction to Python
PDF
01 Introduction to Python
vertopal.com_Ch02-statlearn-lab
PDF
vertopal.com_Ch02-statlearn-lab
Numpy-User-1 10 1
PDF
Numpy-User-1 10 1
Basics of Python
PDF
Basics of Python
ML Lab Manual
PDF
ML Lab Manual
Python (2)
PDF
Python (2)
Python Refresher Notes
PDF
Python Refresher Notes
Python_Tutorial
PDF
Python_Tutorial
Python (3) Leaflet: Roland Becker December 16, 2020
PDF
Python (3) Leaflet: Roland Becker December 16, 2020
sci_python
PDF
sci_python
quickStartGuide Py
PDF
quickStartGuide Py
Python
PDF
Python
NumPy User Guide
PDF
NumPy User Guide
Python Numpy Primer
PDF
Python Numpy Primer
phys430_python
PDF
phys430_python
Basic Python For Scientists: Pim Schellart May 27, 2010
PDF
Basic Python For Scientists: Pim Schellart May 27, 2010
Introduction To Machine Learning Report 1
PDF
Introduction To Machine Learning Report 1
G10 Python 2
PDF
G10 Python 2
Machine Learning and Pattern Recognition Programming
PDF
Machine Learning and Pattern Recognition Programming
Introduction To Python
PDF
Introduction To Python
Introduction To Python
PDF
Introduction To Python
Unit 4 - DT - Final
PDF
Unit 4 - DT - Final
PyTorch - Advanced Deep Learning
PDF
PyTorch - Advanced Deep Learning
ML Lab File Vijay Kumar
PDF
ML Lab File Vijay Kumar
Python CheatSheet - Sahil
PDF
Python CheatSheet - Sahil
User Guide NumPy
PDF
User Guide NumPy
Topic 1 IntroductionToNumpy-2
PDF
Topic 1 IntroductionToNumpy-2
My Book of Python Computing - Abhijit Kar Gupta
PDF
My Book of Python Computing - Abhijit Kar Gupta
Learn PythonArrays and vectorization (1)
PDF
Learn PythonArrays and vectorization (1)
Python Tutorial
PDF
Python Tutorial