Giter VIP home page Giter VIP logo

Comments (3)

mlt avatar mlt commented on August 10, 2024

As the error says, window functions cannot return a set. You want to return a record, not a table! Change return type like this

CREATE OR REPLACE FUNCTION TS_DER_01_31(numeric, out TS_DER_01_31_size numeric, out TS_DER_01_31_time_index numeric)
AS
$BODY$
...

But it is somewhat useless IIRC. I'm not sure if there is an easy way to unpack that record from a window function. I am not sure whether registered composite type can help to return several values from a window function. Also it is somewhat inefficient to use ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW as lots of stuff being passed to R again and again, you'd be better off doing that in R while using the whole window frame as it is special cased. With all that, perhaps, it is easier to write a regular function returning a set of / table, not a window one.

from plr.

mlt avatar mlt commented on August 10, 2024
create type myout as (a float8, b float8);

CREATE OR REPLACE FUNCTION TS_DER_01_31(numeric)
RETURNS myout AS
$BODY$
as.list( base::tryCatch(expr=as.numeric(feasts::shift_level_max(farg1)), error=function(e){c(NA,NA)}) )
$BODY$
LANGUAGE 'plr' WINDOW;

-- test function:
select *, (TS_DER_01_31).*
from (
  select *,
  TS_DER_01_31(usage) OVER w
  from ts_der_sample where custid < 3
  WINDOW w AS (PARTITION BY custid ORDER BY month ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)
) foo;

from plr.

davecramer avatar davecramer commented on August 10, 2024

no response from OP

from plr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.