2
|
1 wrapper <- function(table, columns, options) {
|
|
2
|
|
3 # initialize output list
|
|
4 l <- list()
|
|
5
|
|
6 # loop through all columns
|
|
7 for (key in names(columns)) {
|
|
8 # load column data
|
|
9 column <- as.numeric(columns[key])
|
|
10 column_data <- sapply( table[column], as.numeric )
|
|
11
|
|
12 # create hist data
|
33
|
13 hist_data <- hist(column_data, plot=FALSE)
|
2
|
14
|
|
15 # collect vectors in list
|
|
16 l <- append(l, list(hist_data$breaks[2: length(hist_data$breaks)]))
|
|
17 l <- append(l, list(hist_data$density))
|
|
18 }
|
33
|
19
|
|
20 # make sure length is fine
|
|
21 n <- max(sapply(l, length))
|
|
22 ll <- lapply(l, function(X) {
|
|
23 c(as.character(X), rep("", times = n - length(X)))
|
|
24 })
|
|
25 l <- do.call(cbind, ll)
|
2
|
26
|
|
27 # return
|
|
28 return (l)
|
|
29 }
|