Mark Kittisopikul
Mark Kittisopikul
Compression levels can be 0 or negative. Currently, `ZSTD_minClevel()` returns `-131072`.
Raincloud plots are a combination of a half-`violin` plot, a `boxplot`, and a `dotplot`. Should this go into StatsPlots.jl or live in its own package? Background * https://github.com/RainCloudPlots/RainCloudPlots * https://wellcomeopenresearch.org/articles/4-63...
I notice that some of the documentation for StatsPlots.jl is located in the Plots.jl repository: https://github.com/JuliaPlots/Plots.jl/blob/4400dbafa9552a3e6645bb053732ff74bd9ac11d/src/shorthands.jl#L368-L400 Is there a reason for this? Could that documentation be moved into this repository?
Would it make sense to implement a sliding tile strategy here similar to `mapwindows` in ImageFiltering.jl?
The LICENSE.md currently specifies the license of components of this library. It does fully clarify what the overall license of the combined work.
This adds a `Complement{C,T,N}` type. The complement is to be interpreted as a lazy `complement`. Math on `Complement` affects its underlying `Colorant`.
I'm interested in developing support in this package for building a dictionary using Zstd. I would probably start with making automatically generated bindings via Clang.jl for these headers: https://github.com/facebook/zstd/blob/dev/lib/zdict.h https://github.com/facebook/zstd/blob/dev/lib/zstd.h
These changes add a Julian API to create a pre-trained ZSTD dictionary. It also creates an AbstractDict interface to set and get parameters. This is currently in draft form since...
Currently Blosc.jl allows for compression of `DenseArray`s that are contiguous. Besides being contiguous, the main requirement for an `AbstractArray` is the applicability of `pointer`. 1. `Base.FastContiguousSubArray` satisfies contiguity and has...