Learn how to use boolean indexing with NumPy arrays. Boolean indexing allows use to select and mutate part of array by logical conditions and arrays of boolean values (True or False).
- [Instructor] Sometimes, we'd like to select…parts of an array not by indices,…but by some logic.…Say all the values that are bigger than some threshold.…For this, we're going to use Boolean indexing.…Let's see how it works.…We already have imported numpy,…so we can start using it right away.…Let's create an array np dot arange of three.…We can index the array with another array…in the same shape with contained Boolean values…true or false.…This indexing array is like a mask…which will pick only the values from the original array…where the index array is true.…
That sounded a bit complex.…So, let's try an example to clear this up.…Array and, as an index, I'll parse another array…with true, false, and true.…We got only zero and two, which corresponds…to the true values in the array we parsed as an index.…For now, this does not seem that helpful.…Let's see one more thing that will make it super helpful.…We can say array, where it's bigger or equal to one.…
We got back an array of true and false.…The first item is false since array zero is zero…
Author
Released
7/18/2017- Working with Jupyter notebooks
- Using code cells
- Extensions to the Python language
- Markdown cells
- Editing notebooks
- NumPy basics
- Broadcasting, array operations, and ufuncs
- Pandas
- Conda
- Folium and Geo
- Machine learning with scikit-learn
- Plotting with matplotlib and bokeh
- Branching into Numba, Cython, deep learning, and NLP
Skill Level Intermediate
Duration
Views
Related Courses
-
NumPy Data Science Essential Training
with Charles Kelly3h 54m Intermediate
-
Introduction
-
Welcome46s
-
Mac setup1m 45s
-
Windows setup59s
-
Linux setup55s
-
-
1. Scientific Python Overview
-
2. The Jupyter Notebook
-
Use code cells3m 4s
-
Understand markdown cells3m 23s
-
Edit notebooks4m 10s
-
3. NumPy Basics
-
Overview: NumPy2m 1s
-
NumPy arrays4m 51s
-
Slicing2m 24s
-
Learn Boolean indexing4m 8s
-
Understand broadcasting2m 32s
-
Understand array operations5m 27s
-
Understand ufuncs5m 7s
-
-
4. Pandas
-
Pandas overview1m 58s
-
Load CSV files5m 19s
-
Parse time1m 46s
-
Access rows and columns6m 2s
-
Use pure Python packages2m 19s
-
Calculate speed6m 26s
-
Display a speed box plot2m 41s
-
-
5. Conda
-
Manage environments5m 11s
-
6. Folium and Geo
-
Draw a track on the map4m 51s
-
Use geo data with Shapely6m 10s
-
Generate a report3m 41s
-
7. NY Taxi Data
-
Examine data2m 7s
-
Load data from CSV files2m 44s
-
Work with categorical data2m 50s
-
Work with data: Weather data5m 30s
-
-
8. scikit-learn
-
Introduction: scikit-learn1m 15s
-
Understand train/test splits2m 30s
-
Preprocess data4m 32s
-
Compose pipelines2m 40s
-
Save and load models1m 27s
-
-
9. Plotting
-
Overview: matplotlib1m 5s
-
Use styles3m 1s
-
Customize Pandas output5m 38s
-
Use matplotlib3m 13s
-
Tips and tricks6m 1s
-
Understand bokeh4m 36s
-
-
10. Other Packages
-
Other packages overview1m 19s
-
Understand deep learning7m 52s
-
Understand NLP: NLTK6m 43s
-
Understand NLP: SpaCy2m 51s
-
-
11. Development Process
-
Overview55s
-
Understand source control3m 43s
-
Learn code review4m 55s
-
Testing overview2m 19s
-
Testing example3m 48s
-
-
Conclusion
-
Next steps1m 33s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Learn Boolean indexing