You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, a DimensionalData.jl/Rasters.jl stack or array can be used as a table, but it cant get a stack/array back without Tables.materializer being called. This means predict on multimensional spatial variables returns non-spatial single dimension predictions that have to be manually reshaped, instead of it being automatic.
This will probably be a breaking change.
The text was updated successfully, but these errors were encountered:
For most
predict
return typesTables.materializer
is called. But theAbstractVector
method just returns a vector: https://github.com/JuliaStats/StatsModels.jl/blob/master/src/statsmodel.jl#L149-L154For some objects it would be preferable if it called the materializer with
T((; predictions = out))
.For example, a DimensionalData.jl/Rasters.jl stack or array can be used as a table, but it cant get a stack/array back without
Tables.materializer
being called. This meanspredict
on multimensional spatial variables returns non-spatial single dimension predictions that have to be manually reshaped, instead of it being automatic.This will probably be a breaking change.
The text was updated successfully, but these errors were encountered: