(c) 2016 - present. Enplus Advisors, Inc.
import numpy as np
import pandas as pd
df = pd.DataFrame({
'ticker': ['AAPL', 'AAPL', 'MSFT', 'IBM', 'YHOO'],
'date': ['2015-12-30', '2015-12-31', '2015-12-30', '2015-12-30', '2015-12-30'],
'open': [426.23, 427.81, 42.3, 101.65, 35.53]
})
Exercise:
open
column as a Series
using attribute lookupopen
column as a Series
using dict
-style lookupdate
column as a DataFrame
Exercise:
AAPL
ticker and the date
and open
columns.df1
a new DataFrame
with ticker
as
the index.df2
a new DataFrame
with date
as
the index. Create this DataFrame
from df1
with a single
statement.df2
by the index values.Exercise:
df
called df3
. Add a new column of NaNs
to df3
called close
. Assign close
the same value as open
for all open
values greater than 100.df3
by its close
values.