X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fc752c6b19d1d989dc1505fa7cc74721bac6bf26..cb3262931100688c74c4b3683744529ceff74d00:/contrib/benchmarking_code_block/Rhist.R diff --git a/contrib/benchmarking_code_block/Rhist.R b/contrib/benchmarking_code_block/Rhist.R index 884d3aecee..991060e2d2 100644 --- a/contrib/benchmarking_code_block/Rhist.R +++ b/contrib/benchmarking_code_block/Rhist.R @@ -65,15 +65,19 @@ for(i in unique(NAME)) if (length(vector1)==1) { #If there is only one element + h<-hist(vector1) # Just for R compatibility reasons h$breaks<-c(vector1,vector1) h$counts<-1 } else { if (type=="mean") - #Mean value only - h$breaks<-c(mean(vector1),mean(vector1)) - h$counts<-length(vector1) + { + #Mean value only + h<-hist(vector1) # Just for R compatibility reasons + h$breaks<-c(mean(vector1),mean(vector1)) + h$counts<-length(vector1) + } else if (type=="default") #Standard HISTOGRAM: