aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/TOM/tomRun.R
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-04-02 00:27:43 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-04-02 00:27:43 +0000
commit9a2f9e8a32e02d7541a76e518e2907f7da939bfd (patch)
tree9569351be5b50753b63a0cd8a99078b54012b3bb /contrib/TOM/tomRun.R
parent9e4d243f1360158555fe92cc35fae6521bfdfce5 (diff)
parent80b0ba4a8d41adee65adf73bebed4bbef3c065c3 (diff)
Merge "init TOM: machine learning on test results"
Diffstat (limited to 'contrib/TOM/tomRun.R')
-rw-r--r--contrib/TOM/tomRun.R20
1 files changed, 20 insertions, 0 deletions
diff --git a/contrib/TOM/tomRun.R b/contrib/TOM/tomRun.R
new file mode 100644
index 00000000..ecfe9216
--- /dev/null
+++ b/contrib/TOM/tomRun.R
@@ -0,0 +1,20 @@
+# ----------------------------------------------------------------------
+# title: TOM runner
+# description: Machine Learning-Based Test Results Analysis
+# author: Alassane Samba (alassane.samba@orange.com)
+# Copyright (c) 2017 Orange
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+# ----------------------------------------------------------------------
+# dependencies
+packages <- c("plumber")
+if (length(setdiff(packages, rownames(installed.packages()))) > 0) {
+ install.packages(setdiff(packages, rownames(installed.packages())),dependencies = T, repos = "https://cloud.r-project.org/")
+}
+try(library(plumber), silent=TRUE)
+library(plumber)
+# run TOM
+r<-plumb("R/tom.R")
+r$run(port=8000) \ No newline at end of file