Skip to content

Instantly share code, notes, and snippets.

@ergo70
Created January 27, 2016 05:54
Show Gist options
  • Save ergo70/350dcb7643b6ac74fc4d to your computer and use it in GitHub Desktop.
Save ergo70/350dcb7643b6ac74fc4d to your computer and use it in GitHub Desktop.
predict1
CREATE OR REPLACE FUNCTION r_predict1(inp integer)
RETURNS text AS
$BODY$
library(e1071)
data <- seq(1,10)
classes <- c('b','b','b','b','a','a','a','a','b','b')
mysvm = svm (data, classes, type='C', kernel='radial', gamma=0.1, cost=10)
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