Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I print a numpy array, I get a truncated representation, but I want the full array.

Is there any way to do this?

Examples:

>>> numpy.arange(10000)
array([   0,    1,    2, ..., 9997, 9998, 9999])
>>> numpy.arange(10000).reshape(250,40)
array([[   0,    1,    2, ...,   37,   38,   39],
       [  40,   41,   42, ...,   77,   78,   79],
       [  80,   81,   82, ...,  117,  118,  119],
       ..., 
       [9880, 9881, 9882, ..., 9917, 9918, 9919],
       [9920, 9921, 9922, ..., 9957, 9958, 9959],
       [9960, 9961, 9962, ..., 9997, 9998, 9999]])
share|improve this question
3  
Are you using numpy, specifically? – Alex Martelli Jan 1 '10 at 1:54
It looks like he is.. – Reed Copsey Jan 1 '10 at 2:02

2 Answers

up vote 14 down vote accepted

This sounds like you're using numpy.

If that's the case, you can add:

set_printoptions(threshold=nan)

That will disable the corner printing. For more information, see this NumPy Tutorial.

share|improve this answer

To clarify on Reed's reply

import numpy
numpy.set_printoptions(threshold=numpy.nan)

Note that the reply as given above works with an initial 'from numpy import *', which is not advisable. This also works for me

numpy.set_printoptions(threshold='nan')

For full documentation, see http://docs.scipy.org/doc/numpy/reference/generated/numpy.set_printoptions.html.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.