Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pandas.core.indexing.IndexingError: Too many indexers

Tags:

python

pandas

I want to extract electricity consumption for Site 2

>>> df4 = pd.read_excel(xls, 'Elec Monthly Cons')
>>> df4
     Site Unnamed: 1 2014-01-01 00:00:00 2014-02-01 00:00:00 2014-03-01 00:00:00         ...         2017-08-01 00:00:00 2017-09-01 00:00:00 2017-10-01 00:00:00 2017-11-01 00:00:00 2017-12-01 00:00:00
0    Site    Profile            JAN 2014            FEB 2014            MAR 2014         ...                    AUG 2017            SEP 2017            OCT 2017            NOV 2017            DEC 2017
1  Site 1        NHH               10344                 NaN                 NaN         ...                         NaN                 NaN                 NaN                 NaN                 NaN
2  Site 2         HH              258351              229513              239379         ...                         NaN                 NaN                 NaN                 NaN                 NaN

type

type(df4)
<class 'pandas.core.frame.DataFrame'>

My goal is to take out the numerical value but I do not know how to set the index properly. What I have tried so far does not work at all.

df1 = df.loc[idx[:,1:2],:]

But

    raise IndexingError('Too many indexers')
pandas.core.indexing.IndexingError: Too many indexers

It seems that I do not understand indexing. Does the series type play any role?

df.head
<bound method NDFrame.head of Site                   Site 2
Unnamed: 1                 HH

EDIT

print (df.index)
Index([             'Site',        'Unnamed: 1', 2014-01-01 00:00:00,
       2014-02-01 00:00:00, 2014-03-01 00:00:00, 2014-04-01 00:00:00,
       2014-05-01 00:00:00, 2014-06-01 00:00:00, 2014-07-01 00:00:00,

How to solve this?

like image 599
MikiBelavista Avatar asked Nov 21 '18 08:11

MikiBelavista


People also ask

What does too many indexers mean in Python?

You should specify all axes in the . loc specifier, meaning the indexer for the index and for the columns. Their are some ambiguous cases where the passed indexer could be mis-interpreted as indexing both axes, rather than into say the MuliIndex for the rows. Follow this answer to receive notifications.

How do you cut a series in pandas?

slice() method is used to slice substrings from a string present in Pandas series object. It is very similar to Python's basic principal of slicing objects that works on [start:stop:step] which means it requires three parameters, where to start, where to end and how much elements to skip.

When should I use Loc ILOC?

When it comes to selecting rows and columns of a pandas DataFrame, loc and iloc are two commonly used functions. Here is the subtle difference between the two functions: loc selects rows and columns with specific labels. iloc selects rows and columns at specific integer positions.


1 Answers

In my opinion is necessary remove :, because it means select all columns, but Series have no column.

Also it seems no MultiIndex, so then need:

df1 = df.iloc[1:2]

There is problem first 2 rows are headers, so for MultiIndex DataFrame need:

df4 = pd.read_excel(xls, 'Elec Monthly Cons', header=[0,1], index_col=[0,1])

And then for select use:

idx = pd.IndexSlice
df1 = df.loc[:, idx[:,'FEB 2014':'MAR 2014']]
like image 192
jezrael Avatar answered Sep 19 '22 17:09

jezrael