0% found this document useful (0 votes)
75 views

Numpy

The document provides instructions for an assignment to practice NumPy skills by working through exercises in a Jupyter Notebook. It directs the user to download the NumPy exercises and solutions notebooks, work through the exercises notebook, and recommends asking for help if getting stuck. It emphasizes practicing NumPy skills to improve and notes some optional extra NumPy resources for learning.

Uploaded by

Benjamin Dublin
Copyright
© © All Rights Reserved
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
75 views

Numpy

The document provides instructions for an assignment to practice NumPy skills by working through exercises in a Jupyter Notebook. It directs the user to download the NumPy exercises and solutions notebooks, work through the exercises notebook, and recommends asking for help if getting stuck. It emphasizes practicing NumPy skills to improve and notes some optional extra NumPy resources for learning.

Uploaded by

Benjamin Dublin
Copyright
© © All Rights Reserved
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 2

Assignment: NumPy Practice

Now you've seen some of what NumPy can do, it's time to practice your skills!

In this assignment, you'll work through a Jupyter Notebook full of exercises based on what we've
covered in the NumPy section videos.

Download the NumPy exercises and solutions notebooks from GitHub and work through each cell in the
exercises notebook using what you've learned in the previous videos.

NumPy Exercises notebook

NumPy Exercises Solutions notebook (avoid looking at this for as long as possible)

Don't forget, if you get stuck, there's plenty of help available!

Remember, you should always try to run the code yourself first.

If you're still stuck feel free to ask the Discord server (Checkout the #machinelearning-datascience
channel for help) or search the internet for answers.

Note: In the notebook, there may be instructions to import a file from a file path such as "../data/car-
sales.csv", you should change these to wherever you're storing "car-sales.csv". Or the direct link on
GitHub (in raw format), such as, https://raw.githubusercontent.com/mrdbourke/zero-to-mastery-
ml/master/data/car-sales.csv.

After working through the NumPy exercises notebook, how did you go?

If you made through, congratulations! If you struggled along the way, don't worry, it would be surprising
if you were able to retain everything which was covered in the lectures.
The best way to improve your NumPy skills is to keep practising.

Keep in mind some of the things you've learned about NumPy for whenever you need to manipulate
numerical data with Python.

Optional: Extra NumPy resources

Woah! You've covered a lot on NumPy. And that's why these extra resources are optional. You can think
of them as supplements to what we've covered so far.

I learn best when I look at similar things from different angles.

In this case, that's what these extra resources on NumPy provide. A look at the material we've covered
from different points of view.

The Basics of NumPy Arrays by Jake VanderPlas


-https://jakevdp.github.io/PythonDataScienceHandbook/02.02-the-basics-of-numpy-arrays.html

A Visual Introduction to NumPy by Jay Alammar - https://jalammar.github.io/visual-numpy/

NumPy Quickstart tutorial (part of the NumPy documentation)

As always, remember the best way to learn a new coding concept is to write it yourself. If in doubt, run
the code.

You might also like