On Wed, 14 Jul 2021, atecon wrote:
Am 14.07.2021 03:34 schrieb Allin Cottrell:
> >
> > <hansl>
> > matrix m1 = {1, NA; 3, NA}
> > matrix m2 = {1, -1; 3, -3}
> >
> > eval quantile(m2, 0.5)
> > eval quantile(m1, 0.5)
> >
> > ? eval quantile(m2, 0.5)
> > 2 -2
> >
> > ? eval quantile(m1, 0.5)
> > Data error
>
> This seems a somewhat different issue. Would you want to see a return
> value of {2, nan} for m1?
Python's numpy does exactly that [...]
We now do the same in git.
Allin