Closed
Description
>>>df.info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
MultiIndex: 9063396 entries, (2011-10-19 00:00:00, 000312) to (2014-03-31 00:00:00, Y8565N10)
Data columns (total 5 columns):
weight_benchmark float64
weight_portfolio float64
weight_active float64
weight_msci_acwi float64
investable bool
dtypes: bool(1), float64(4)
>>>df.iloc[:1000].info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
MultiIndex: 1000 entries, (2011-10-19 00:00:00, 000312) to (2011-10-19 00:00:00, 17275510)
Data columns (total 5 columns):
weight_benchmark 1000 non-null float64
weight_portfolio 1000 non-null float64
weight_active 1000 non-null float64
weight_msci_acwi 1000 non-null float64
investable 1000 non-null bool
dtypes: bool(1), float64(4)