Glenn Moynihan

Results 15 issues of Glenn Moynihan

The problem is not resolved by defining `Base.convert(::Type{Symmetric}, x::Array{Float64, 2})`. I believe the problem is the non-commutativity of `Symmetric` and `BlockArray` methods. Specifically, I think the sub-block types are being...

Trying to call `mapslices` over an `AxisArray` errors which I think can be fixed with the appropriate method for `reduce_indices`. This seems somewhat related to #7. MWE: ```julia julia> A...

It would be nice of `@test_log` could test for multiple messages at the same level from a particular logger. Below is a MWE of what I was hoping to do:...

enhancement

Bit of technicality but according to the docs for `isequal` >isequal is an equivalence relation - it is reflexive (=== implies isequal), symmetric (isequal(a, b) implies isequal(b, a)) and **transitive**...

`Base.intersect` can accept multiple arguments, but `Intervals.intersect` only accepts two. This is limiting if one wants to compute the intersection of multiple intervals at the same time. MWE ```julia julia>...

bug

MWE ```julia julia> M = reshape(1:9, 3, 3); julia> p = Power(3); julia> FeatureTransforms.apply(M, p; dims=1, inds=1) 3-element Vector{Int64}: 1 64 343 julia> FeatureTransforms.apply!(M, p; dims=1, inds=1) ERROR: indexed assignment...

bug

* `depwarn` about LinearCombination with `dims=:` * `is_transformable` deprecation

As mentioned in #5 and #6, a `CustomTransform` (or some other name) would be useful when one wants to apply some custom function to their data. This would be quite...

new transform

`MeanStdScaling` computes one set of mean and std params for all the data provided. There is not a convenient way to compute separate mean and std params for, e.g., a...

`Power` only takes one paramter for now. In our code base we often want to apply multiple powers to generate an expansion, i.e. 1, 2, 3, 4, etc. It would...