私はデータシリーズ 'rpt_date' を持っています:
>>> rpt_date
STK_ID
000002 [u'20060331', u'20060630']
000005 [u'20061231', u'20070331', u'20070630']
>>> type(rpt_date)
<class 'pandas.core.series.Series'>
>>>
また、次の方法で multiIndex オブジェクト (pandas.core.index.MultiIndex) を作成する方法:
'my_index = gen_index_by_series (rpt_date)'
'my_index'
次のようになります。
>>> my_index
MultiIndex
[('000002', '20060331') ('000002', '20060630') ('000005', '20061231')
('000005', '20070331') ('000005', '20070630')]
>>> type(my_index)
<class 'pandas.core.index.MultiIndex'>
>>>
では、どのように書くの'gen_index_by_series(series)'
ですか?