我想在stan中使用矢量的分位数,但功能分位数似乎不起作用。请参阅以下示例中的** **。
data{
vector[10] y;
vector[10] x;
}
parameters{
real a;
real b;
}
model{
vector[10] mu;
real Q;
mu = a*x+b;
**Q = quantile(y-mu, 0.66);**
}
答案 0 :(得分:1)
Stan语言中不存在quantile
函数。
斯坦的语言侧重于表达可区分的统计模型。分位数函数不可微分。