Sergei Lebedev
Sergei Lebedev
I originally wanted this feature to use new syntax, e.g. %generate foo = set('a' | 'b'); %generate bar = foo | set('c'); %generate boo = foo & set('c'); so that...
See #20864 for more context and the added test for a reproducer.
Hello, I think `procket` should call [getprotobyname](http://linux.die.net/man/3/getprotobyname) instead of using [hardcoded](https://github.com/msantos/procket/blob/master/src/procket.erl#L335) protocol numbers, since the actual values are platform dependant and **can** be overriden in `/etc/protocols/`.
Have you considered making `Vector.t` strided (c.f. [NumPy](http://docs.scipy.org/doc/numpy/reference/arrays.ndarray.html#internal-memory-layout-of-an-ndarray))? The major benefits of this approach are: - Memory efficiency. No pointer chasing for whole-matrix operations. - Code reuse between `Vectors` and...
Unfortunately, `__version__` trick in `setup.py` breaks `bert` installation: ``` Downloading/unpacking erlastic>=1.0.0 (from foobar) Downloading erlastic-1.0.0.tar.gz Running setup.py egg_info for package erlastic Downloading/unpacking bert>=1.0.0 (from foobar) Downloading bert-1.0.0.tar.gz Running setup.py egg_info...
EDF is basically a histogram with KDE inside each bin, should be done after #6. See Apache Common [implementation](http://commons.apache.org/proper/commons-math/apidocs/src-html/org/apache/commons/math3/random/EmpiricalDistribution.html) for details. Might also be useful for Monte-Carlo simulations.
See [Algorithm AS R94](http://www.jstor.org/discover/10.2307/2986146).
See [Wikipedia](http://en.wikipedia.org/wiki/Local_regression) and R [documentation](http://stat.ethz.ch/R-manual/R-patched/library/stats/html/loess.html) for details.
See for example [scipy](https://github.com/scipy/scipy/blob/v0.12.0/scipy/stats/distributions.py#L1745).