changeset 30:533b6c8f8584 draft

Uploaded
author guerler
date Mon, 07 Apr 2014 19:23:42 -0400
parents 726effc0bcbd
children 7774e0097ff4
files boxplot.r
diffstat 1 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/boxplot.r	Mon Apr 07 19:23:42 2014 -0400
@@ -0,0 +1,21 @@
+wrapper <- function(table, columns, options) {
+
+    # initialize output list
+    l <- list()
+
+    # loop through all columns
+    for (key in names(columns)) {
+        # load column data
+        column <- as.numeric(columns[key])
+        column_data <- sapply( table[column], as.numeric )
+
+        # create hist data
+        data <- boxplot(column_data, plot=FALSE)
+        
+        # collect vectors in list
+        l <- append(l, list(data$stats))
+    }
+    
+    # return
+    return (l)
+}