Dave Kleinschmidt

Results 49 issues of Dave Kleinschmidt

I went as far as implementing my own method for this before thinking to look at the source code and discovering the already existing support for this operation!

StatsModels provides the notion of "intercept traits" https://github.com/JuliaStats/StatsModels.jl/blob/master/src/traits.jl to control the behavior of the automatic intercept adding that normally happens in GLMs. This package is a great example of a...

The [NIfTI spec](https://nifti.nimh.nih.gov/nifti-1/documentation/nifti1fields/nifti1fields_pages/scl_slopeinter.html) says that the slope/intercept should be used _for nonzero slope_: ``` / DATA SCALING: ------------ If the scl_slope field is nonzero, then each voxel value in the...

Biber has pretty straightforward build scripts (e.g. https://github.com/plk/biber/blob/dev/dist/darwin_arm64/build.sh), and having a biber jll would allow Tectonic.jl to not vendor its own artifacts and fix https://github.com/MichaelHatherly/Tectonic.jl/issues/13

builder request :pray:

When using `@test_logs`, if there is a test failure, ReTest throws a method error: ``` Got exception outside of a @test MethodError: no method matching record(::ReTest.Testset.ReTestSet, ::Test.LogTestFailure) Closest candidates are:...

I'm not sure if this is actually GR's fault, but on my system (Arch linux 4.18), the QT package is QT version 5, and GR looks for QT version 4:...

patch from @pank : https://github.com/nnicandro/emacs-jupyter/issues/395#issuecomment-1145976582 This does fix #395 for me.

We have JuliaFormatter (using the built in YAS config) turned on as a linting step in many of our internal repositories and I find that sometimes it appears a bit...overeager...

bug

The Arrow spec has a "run-end encoded layout" (https://arrow.apache.org/docs/format/Columnar.html#run-end-encoded-layout) but it doesn't appear to be supported in Arrow.jl. Seems fairly straightforward to implement since the `run_ends` and `values` arrays are...

This is one possible fix for #293. As described in that thread, the bottleneck here is actually that `InterceptTerm`s generate `Array{Float64}`s, which then get `hcat` with other columns and promote...