[Numpy-discussion] [REL] Matplotlib 2.1.1

2017-12-11 Thread Thomas Caswell
Folks, Happy to announce Matplotlib 2.1.1 This is primarily a bug fix release, see https://github.com/matplotlib/matplotlib/releases/tag/v2.1.1 for details. The next planned release is a 2.2 feature release in January/February 2018. Thank you to everyone who worked on this release! Tom ___

Re: [Numpy-discussion] The meaning of threshold in numpy.set_printoptions()?

2017-12-11 Thread Eric Wieser
Whether summarization happens is also determined by edgeitems (defaults to 3), which is the number of items to print on each edge when summarizing. It wouldn’t make sense for summarization to cause the output to be longer than if no summarization occured! Feel free to submit an improvement to the

[Numpy-discussion] The meaning of threshold in numpy.set_printoptions()?

2017-12-11 Thread Peng Yu
Hi, The help says. threshold : int, optional Total number of array elements which trigger summarization rather than full repr (default 1000). But the following code shows that 7 triggers summarization instead of 5. Does anybody know how to interpret the meaning of `threshold`