Frames White
Frames White
right now (at least with the `BlueStyle()` setting) JuliaFormatter will change ```julia size(dx) == map(length, project.axes) || throw(_projection_mismatch(project.axes, size(dx))) ``` into ```julia size(dx) == map(length, project.axes) || throw(_projection_mismatch(project.axes, size(dx))) ```...
I can't actually find the bit that says to do: `foo(a, b)` not `foo(a,b)` Nor for `Union{A, B}` not `Union{A,B}` Maybe i am just missing it.
By default if one writes the following, pressing enter after the opening `(` then the next character pressed will be where the `x` is: ``` function my_long_function_name( x ``` but...
As an alternative to https://github.com/invenia/BlueStyle/issues/59 while the whole guide is suggests, we could be more explict about the line limit being a suggestion. What if we removed the line limit...
We should transpose these rules across https://docs.julialang.org/en/v1/manual/style-guide/index.html#Write-functions-with-argument-ordering-similar-to-Julia-Base-1
Right now we handle the fact that things can define `show(::IO, mimetype, ::MyType)`, vis the [MimeWriter](https://github.com/JuliaIO/FileIO.jl/blob/master/src/mimesave.jl) which we list just like any other library. Generally last. I suggest that we...
According to the PPCA paper [Tipping, Michael E., and Christopher M. Bishop. "Probabilistic principal component analysis." Journal of the Royal Statistical Society: Series B (Statistical Methodology) 61.3 (1999): 611-622.](https://www.microsoft.com/en-us/research/publication/probabilistic-principal-component-analysis/) one...
So I am debugging some mean code that seems to be sending values right to the exteme ends of the Float32 range. I kept getting `ArgumentError: principal variance cannot exceed...
Feather explictly has a TIMESTAMP type that includes timezone info. it would be useful to map this to the `ZonedDateTime` type in TimeZones.jl
Closes #1219 Tests it works by using BlockDiagonals.jl Basic philosophy: - Anything that worked with PDMats before should be just as fast - Anything that didn't work before should be...