Ask a Question
Ask Question Login
Corporate Training
  1. Community
  2. Python
  3. Question
Python

Python “Too many indices for array”

Asked by Carol Bower Apr 20, 2021 1.2K views 1 answer
Share

About this question

I am reading a file in python using pandas and then saving it in a numpy array. The file has the dimension of 11303402 rows x 10 columns. I need to split the data for cross-validation and for that I sliced the data into 11303402 rows x 9 columns of examples and 1 array of 11303402 rows x 1 col of labels. The following is the code:


tdata=pd.read_csv('train.csv') tdata.columns='Arrival_Time','Creation_Time','x','y','z','User','Model','Device','sensor','gt'] 

User_Data = np.array(tdata) 

features = User_Data[:,0:9] 

labels = User_Data[:,9:10]

Get error comes in code:

classes=np.unique(labels) 

idx=labels==classes[0] 

Yt=labels[idx] 

Xt=features[idx,:]

On the line:

Xt=features[idx,:]

it says 'too many indices for array'

The shapes of all 3 data sets are:

print np.shape(tdata) = (11303402, 10) 

print np.shape(features) = (11303402, 9) 

print np.shape(labels) = (11303402, 1)

How to resolve this, please help.

Your answer

1 Answer

More Python discussions

Learn & Explore

Free tutorials and interview questions from industry experts — learn the skill, then get ready to prove it.

Latest Python Blogs

Guides, tips and career advice on Python from JanBask experts.