Re: [Numpy-discussion] NEP sprint: 21 and 22 March

2018-03-15 Thread Stefan van der Walt
Hi everyone, A quick reminder of the NEP sprint that will happen at Berkeley next Wednesday and Thursday. Please let me know if you are interested in joining. Best regards Stéfan On Fri, 09 Mar 2018 15:26:38 -0800, Stefan van der Walt wrote: > Hi everyone, > > As you may have noticed, there's

Re: [Numpy-discussion] PR to add a function to calculate histogram edges without calculating the histogram

2018-03-15 Thread Thomas Caswell
Yes I like the name. The primary use-case for Matplotlib is that our `hist` method can take in a list of arrays and produces N histograms in one shot. Currently with 'auto' we only use the first data set to sort out what the bins should be and then re-use those for the rest of the data sets. This

Re: [Numpy-discussion] PR to add a function to calculate histogram edges without calculating the histogram

2018-03-15 Thread Nathaniel Smith
Instead of an nobs argument, maybe we should have a version that accepts multiple data sets, so that we have the full information and can improve the algorithm over time. On Mar 15, 2018 7:57 PM, "Thomas Caswell" wrote: > Yes I like the name. > > The primary use-case for Matplotlib is that our `

Re: [Numpy-discussion] NumPy 1.15 release schedule

2018-03-15 Thread Ralf Gommers
On Mon, Mar 12, 2018 at 11:44 AM, Charles R Harris < charlesr.har...@gmail.com> wrote: > Hi All, > > I'm thinking of branching NumPy in the middle/end of April. That is > quicker than usual, but there don't seem to be any major changes proposed > for the near future, we have merged a reasonable nu

Re: [Numpy-discussion] NEP sprint: 21 and 22 March

2018-03-15 Thread matti picus
I would love to join but I will be at the PyPy yearly sprint in Switzerland from Saturday to Wednesday, and traveling back to Israel on Thursday. I can join virtually Wednesday, my evening will be your morning. I begin traveling Thurs morning which is sometime Wed afternoon for you and will be offl

Re: [Numpy-discussion] PR to add a function to calculate histogram edges without calculating the histogram

2018-03-15 Thread Eric Wieser
That sounds like a reasonable extension - but I think there still exist cases where you want to treat the data as one uniform set when computing bins (toggling between orthogonal subsets of data) so isn't really a useful replacement. I suppose this becomes relevant when `density` is passed to the