January 2019
Intermediate to advanced
378 pages
8h 27m
English
Let's now move on to getting our DataFrame ready to work with:
df = pd.DataFrame(ipo_list) df.head()
The preceding code generates the following output:

The data looks good, so let's now add our columns:
df.columns = ['Date', 'Company', 'Ticker', 'Managers', \
'Offer Price', 'Opening Price', '1st Day Close',\
'1st Day % Chg', '$ Chg Open', '$ Chg Close',\
'Star Rating', 'Performed']
df.head()
The preceding code generates the following output:

Let's now convert that Date column from a float to a proper date. The
Read now
Unlock full access