Oliver Schulz
Oliver Schulz
@Cornelius-G can you give this a test?
@Cornelius-G, let me know when you're done checking this out?
Thanks @Micki-D and @Cornelius-G !
Thanks for the write-up!
Thanks! We can split `_auto_binning_nbins` among separate subtypes of `AbstractBinningAlgorithm`, and have a `FixedBinning` too or so. Of course we should allow `AbstractArray`s and `NamedTuple`s of binning algos (like you...
Yes, that's the idea. `FixedBinning` would indeed be a subtype of `AbstractBinningAlgorithm`. To make life more comfortable for the users, we should define `Base.conv(::Type{AbstractBinningAlgorithm}, x)` for symbols (e.g. `:fd` gets...
Sure, that should work! [EmpiricalDistributions.jl](https://github.com/oschulz/EmpiricalDistributions.jl) turns histograms into (stepwise, no KDE capability and gradient yet, so not compatible with HMC) distributions, which can just be plugged into a `VariableShapes.NamedTupleDist(a =...
That would be so awesome!
Coming from #176 (compatibility with Static.jl), might ```julia const Ones{T,N,Axes} = Fill{Static.True,N,Axes} const Zeros{T,N,Axes} = Fill{Static.False,N,Axes} ``` not be an elegant alternative?
If FillArrays would take on Static as a dependency, also #140 could be extended to enable `Fill`-to-`Fill` vcat for arbitrary static values, not just one and zero, we could have...