The following code returns a series with NaNs everywhere:
s = pd.Series([1, 2, 3, 4, 5, 6],
index=pd.MultiIndex.from_product([["A", "B"], ["c", "d", "e"]]))
s.reindex([('E', 'g'), ('E', 'h'), ('E', 'i'), ('F', 'g'), ('F', 'h'), ('F', 'i')])
or
s.reindex(pd.MultiIndex.from_product([['E', 'F'], ['g', 'h', 'i']]))
How can I reindex the series and retain the original values?