I've started using Pandas for some large Datasets and mostly it works really well. There are some questions I have regarding the indices though
I have a MultiIndex with three levels - let's say a, b, c. How do I slice along index a - I just want the values where a = 5, 7, 10, 13. Doing df.ix[[5, 7, 10, 13]] does not work as pointed out in the documentation
I need to have different indices on a DF - can I create these multiple indices and not associate them to a dataframe and use them to give me back the raw ndarray index?
Can I slice a MultiIndex on its own not in a series or Dataframe?
Thanks in advance