我正在尝试使用R函数fevd()
使GEV分布适合于非平稳序列。我假设位置参数$ \ mu_t = \ mu_0 + time \ mu_1 $有趋势。我可以通过以下方式获得R代码:
fevd(x=data, initial = list(location =c(109,6) , scale = 1, shape = 0.2)))
其中$ \ mu_0 = 109 $和$ \ mu_1 = 6 $作为缩写。
我遇到以下错误:
fevd: initial parameter estimates must have length 1 or number of parameters present. Incorrect number for location parameter.
如何更改代码以获取参数估算值?