pl/pgsql 数组作为聚合函数的输入

发布于 2024-09-28 22:20:58 字数 373 浏览 2 评论 0原文

我正在编写 pl/pgsql 函数来进行一些统计处理。使用 8.2 的 postgres。我想使用这个方便的聚合函数:

regr_slope(Y, X)

但是,我将 X 和 Y 数据存储为 pl/pgsql 函数中的本地数组: y 双精度[]; x 双精度[];

麻烦是当我在 pl/pgsql 函数中使用它作为一行时:

slope := regr_slope(y, x);

我收到一条错误消息,指出该函数不可用或参数错误。我怀疑这是因为输入应该被选择为表中的列,而不是作为双精度数组传递。

有没有办法用本地数组制作 regr_slope 函数? (即,某种方法可以将数组转换为聚合函数的有效输入?)

谢谢。

i am writing pl/pgsql function that does some statistics processing. using 8.2 of postgres. i want to use this handy aggregate function:

regr_slope(Y, X)

but, i have my X and Y data stored as local arrays in the pl/pgsql function:
y double precision[];
x double precision[];

trouble is when i use this as a line in the pl/pgsql function:

slope := regr_slope(y, x);

i get an error saying that function isn't available or has the wrong arguments. i suspect it's because the inputs are supposed to be selected as columns from a table instead of being passed as double precision arrays.

is there a way to make the regr_slope function with local arrays? (ie, some way to cast the array to be a valid input to an aggregate function?)

thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你爱我像她 2024-10-05 22:20:58
SELECT regr_slope(x,y) INTO slope FROM (SELECT unnest(ARRAY[1,2,3,4]) as x, unnest(ARRAY[5,6,7,8]) AS y) AS z;
SELECT regr_slope(x,y) INTO slope FROM (SELECT unnest(ARRAY[1,2,3,4]) as x, unnest(ARRAY[5,6,7,8]) AS y) AS z;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文