Mercurial > repos > guerler > charts
view histogram.r @ 7:2e2d92b2ae38 draft
Uploaded
author | guerler |
---|---|
date | Thu, 17 Apr 2014 17:35:24 -0400 |
parents | 6a11aeb8bd39 |
children | a889861139bc |
line wrap: on
line source
wrapper <- function(table, columns, options) { # initialize output list l <- list() # loop through all columns m <- list() for (key in names(columns)) { # load column data column <- as.numeric(columns[key]) column_data <- sapply( table[column], as.numeric ) # collect vectors in list m <- append(m, list(column_data)) } # get min/max boundaries max_value <- max(unlist(m)) min_value <- min(unlist(m)) # fix range and bins bin_seq = seq(min_value, max_value, by=10) # add as first column l <- append(l, list(bin_seq[2: length(bin_seq)])) # loop through all columns for (key in seq(m)) { # load column data column_data <- m[[key]] # create hist data hist_data <- hist(column_data, breaks=bin_seq, plot=FALSE) # normalize densities count_sum <- sum(hist_data$counts) if (count_sum > 0) { hist_data$counts = hist_data$counts / count_sum } # collect vectors in list l <- append(l, list(hist_data$counts)) } # return return (l) }