Skip to content

Instantly share code, notes, and snippets.

@ergo70
Last active January 28, 2016 13:45
Show Gist options
  • Save ergo70/f602efce92a3a3658bf6 to your computer and use it in GitHub Desktop.
Save ergo70/f602efce92a3a3658bf6 to your computer and use it in GitHub Desktop.
predict4
CREATE OR REPLACE FUNCTION r_predict4(inp integer)
RETURNS text AS
$BODY$
result <- predict(mysvm, inp)
return(as.character(result[1:1]))
$BODY$
LANGUAGE plr IMMUTABLE STRICT
COST 100;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment