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
I am trying to do GEV estimation using mapCube, using the following logic. The objective is to get the timeseries for each gridpoints and return the GEV model associated with the timeserie, for each gridpoint, storing the following information into a YAXArray:
MaximumLikelihoodAbstractExtremeValueModel
model :
ThresholdExceedance
data : Vector{Float64}[28]
logscale : ϕ ~1
shape : ξ ~1
θ̂ : [2.0154230098844907, 0.09042541506171095]
The problem is, that your type is a parametric type. And then its type is not DateType but UnionAll. You would have to fix all parameters in the type to use it as outtype. The easiest would be to construct an example value of the type you want to use and call typeof on it to select the exact type that could be used.
We might want to loosen the restriction on the field in OutDims so that this would work without that pre step.
Hello,
I am trying to do GEV estimation using
mapCube
, using the following logic. The objective is to get the timeseries for each gridpoints and return the GEV model associated with the timeserie, for each gridpoint, storing the following information into aYAXArray
:Hence, when I try the following:
I get the error:
It seems to be possible to assign a custom type to
outtype
, but I am unsure why it fails forMaximumLikelihoodAbstractExtremeValueModel
:Thanks for any intput!
The text was updated successfully, but these errors were encountered: