Skip to content
Advertisement

slicing a 2d numpy array

The following code:

JavaScript

Is generating the following error message:

JavaScript

I looked up the syntax at this link and I seem to be using the correct syntax to slice. However, when I type

JavaScript

into the Python shell, it gives me the following output, which is clearly wrong, and is probably what is throwing the error:

JavaScript

Can anyone show me how to fix my code so that I can extract the second column and then take the mean of the second column as intended in the original code above?

EDIT:

Thank you for your solutions. However, my posting was an oversimplification of my real problem. I used your solutions in my real code, and got a new error. Here is my real code with one of your solutions that I tried:

JavaScript

And here is the error message that is now being generated by the new code:

JavaScript

Second EDIT:

This is solved now that I added:

JavaScript

above my code.

I have been at this too many hours and need to take a break for a while if I am making these kinds of mistakes.

Advertisement

Answer

You probably mean p.mean(copy[:,1]) with the indexing before the mean() function call. I don’t see the problem with the contents of copy – it looks right to me.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement