3-3-3-5. Accessing and Deleting Elements in Pandas Series

In the last video, we created this Panda series of a grocery list. Now, how do we access or modify its elements? One great advantage of the series object, is that it allows us to access data in multiple ways. One way is accessing elements with their index labels. This accesses the quantity of eggs … Read more

3-3-2-7. Accessing, Deleting, and Inserting Elements Into ndarrays

Now that you know how to create a variety of NumPy arrays, let’s see how NumPy allows us to effectively manipulate the data within them. NumPy arrays are mutable, meaning the elements in them can be changed after the array has been created. NumPy arrays can also be sliced in many different ways. This allows … Read more