Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Instruction
Creating a Series
Creating a Series
There are couple of ways to create a new Series from scratch.
Let's explore.
# Just like how NumPy is almost always abbreviated as np...
import numpy as np
# pandas is usually shortened to pd
import pandas as pd
Creating from a dictionary
Let's use this sample data here we got from CashBox. They want to track the balances of their users. This is how much money each...