Tyler Benster
Tyler Benster
the resulting scale is as if the outliers were there
I have a file, [`stat.npy`](https://drive.google.com/open?id=1ZpbRwub-KpSnT_BJDGIAW-uh-5QJWKtl). ```julia julia> using PyCall julia> np = pyimport("numpy") julia> stat = np.load("stat.npy", allow_pickle=true); julia> cell_centers = map(x->get(x,"med"), stat) julia> cell_centers[1023] 2-element Vector{Int64}: 477 562 julia>...
Just started looking at Reflex and blown away thus far! I've been looking for a FRP implementation to use in neuroscience, modeling electrode voltage as Behavior and action potentials (voltage...
On `release-20.09`, If I use the overlay: ```nix self: super: { pythonOverrides = python-self: python-super: { numpy = python-super.numpy.override { blas = super.mkl; }; }; python37 = super.python37.override {packageOverrides =...
**Is your feature request related to a problem? Please describe.** Currently, *.nix files are only found in workspace root. If there are two folders in workspace, no *.nix files are...
Hi, I'm a new user so apologies if I missed something in documentation--I'm wondering how to get Documenter to document a struct & macro that are exported? e.g. https://github.com/tbenst/Thunks.jl/blob/8f13f468c7b2b15b8cca4a33cb42df20cc18c20d/src/Thunks.jl#L120 exports...
Hi ya'll, I'm not sure where to put this so will dump in an issue for now in case it helps someone later. I needed a safe multi-threaded way to...
I believe that `create_dset` may trigger a race condition between Julia and the underlying HDF5 library. I was able to create a reproducible example using [H5Sparse.jl](https://github.com/severinson/H5Sparse.jl/issues/4), and I've subsequently rewritten...
**Is your feature request related to a problem? Please describe.** Allow assignment of DOK subarray without requiring creation of dense array. **Describe the solution you'd like** ``` >>> import sparse...
Took me a long while to learn about `Quantity`, so thought I'd attempt a small contribution to make this more obvious. I'm still not quite sure how to run doctests...