Mercurial > repos > guerler > charts
changeset 52:e10dbc437d8f draft
Uploaded
author | guerler |
---|---|
date | Thu, 05 Jun 2014 13:37:37 -0400 |
parents | bfd966f30073 |
children | 5a478e171752 |
files | boxplot.r |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/boxplot.r Thu Jun 05 13:37:22 2014 -0400 +++ b/boxplot.r Thu Jun 05 13:37:37 2014 -0400 @@ -7,8 +7,8 @@ for (key in names(columns)) { # load column data column <- as.numeric(columns[key]) - column_data <- sapply( table[column], as.numeric ) - + column_data <- suppressWarnings(as.numeric(as.character(table[column][[1]]))) + # create hist data data <- boxplot(column_data, plot=FALSE)