Carlos Parada
Carlos Parada
JuliaFormatter currently lets you choose between: ``` where {A
Feature request: Some way to run JuliaFormatter, then offer the user a way to accept/reject each proposed change. Useful for dealing with weird edge cases or bugs, and also gives...
Feature request/suggestion: Reformatting code that assumes a particular indexing for an array, e.g. `for i in 1:length(array)` instead of `for i in eachindex(array)`. (Should probably be a style feature that...
Even with the setting turned off, VSCode replaces pipes with function calls. It also does this when not appropriate -- I'm using Tullio, and `@tullio` uses the pipe to indicate...
As title says -- docstrings don't get line breaks.
The style guide names the function `mysearch` rather than `my_search`.
The single line: ``` setindex(a::StaticArrays.StaticArray, args...) = Base.setindex(a, args...) ``` Makes up most of the package's compile time; it could easily be moved to StaticArrays.jl, avoiding the cost of having...
Lots of sampling algorithms return weighted samples. For instance, importance sampling and SMC both return weighted samples*¸ as do elliptical slice sampling and nested sampling algorithms. Currently, though, `InferenceData` objects...
There's no documentation for `DirichletMultinomial`, and it's also not clear to me what `α0` is supposed to be--the usual parametrization of a `DirichletMultinomial` is just in terms of `n` and...
Clarifies the `GeneralizedPareto` docstring and adds a new constructor, `GeneralizedPareto(ξ)`, which defaults to unit scale and a location of 0.