Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data:
8 10 10 13 14 12 11 8 8 10 10 12 12 12 11 12 12 12 12 12 12 10 12 10 11 10 10 12 10 12 7 12 18 12 11 13 10 10 10 8 12 10 10 8 14 9 8 12 15 14 1 9 7 8 12 57 12 10 10 8 8 16 14 13 10 12 9 12 11 10 8 8 9 12 8 12 10 12 9 8 12 8 12 10 12 9 28 10 12 9 14 12 12 99 13 13 14 12 12 10 11 12 14 10 12 12 6 12 10 12 12 12 9 12 12 13 8 12 10 10 10 9 12 9 10 8 12 10 8 8 9 12 12 10 10 9 11 10 9 15 10 8 10 8 9 9 6 16 12 12 12 12 10 12 8 9 12 12 8 14 10 12 8 11 10 12 12 12 12 8 10 7 10 10 12 11 9 10 12 14 13 10 11 10 10 8 10 10 10 8 8 4 14 8 12 12 10 8 12 12 10 10 12 12 9 11 14 10 8 12 8 10 11 12 10 10 12 8 9 12 8 8 10 10 10 14 10 12 12 13 9 12 12 10 12 6 8 12 10 9 11 11 9 10 15 12 7 7 10 9 10 10 9 12 10 9 12 10 7 12 10 10 12 8 12 10 10 9 8 8 12 12 10 12 10 9 10 10 8 10 12 12 16 10 9 12 12 10 7 12 10 10 6 9 6 18 13 10 12 15 12 12 9 7 12 13 14 13 12 8 8 10 10 8 12 10 12 12 12 9 12 7 12 8 8 12 14 10 5 9 8 13 10 10 14 10 99 10 12 17 14 8 14 12 12 10 10 8 12 12 12 10 12 10 10 12 12 12 12 13 12 8 10 12 8 10 10 12 12 12 12 12 12 14 10 12 14 12 14 12 13 8 12 14 10 10 11 16 12 10 10 99 8 11 12 12 11 10 20 9 14 12 10 12 10 12 12 8 12 12 10 99 12 2 10 10 10 12 12 12 12 88 9 12 14 8 12 10 10 10 7 8 10 1 10 10 9 15 10 12 12 12 11 12 12 14 8 12 12 10 14 8 10 12 10 10 10 12 9 12 11 8 14 12 10 12 10 8 14 12 12 12 8 12 12 10 12 12 12 9 11 10 15 10 9 9 10 7 10 9 10 10 10 15 12 12 10 12 8 12 11 8 14 8 12 10 15 9 13 12 14 12 12 17 10 13 12 12 10 12 10 12 10 10 10 1 8 12 10 10 10 12 12 11 12 8 8 12 12 10 12 9 10 12 12 12 12 10 10 9 12 10 9 12 7 14 10 10 9 10 8 10 12 12 10 9 10 9 12 10 12 10 9 7 12 11 12 9 13 12 12 7 8 12 12 12 11 12 13 10 12 10 12 12 15 12 12 13 10 10 8 11 12 12 12 12 10 10 12 15 12 10 10 7 12 10 11 10 10 10 10 11 7 15 8 10 6 8 9 8 7 10 12 14 11 8 10 8 8 14 12 15 12 12 9 12 12 9 11 15 11 12 7 15 9 10 15 15 8 11 12 10 10 12 7 12 10 11 12 10 10 8 9 8 10 10 14 10 10 12 12 7 12 10 12 9 9 13 14 10 12 12 12 12 12 10 10 8 12 8 14 10 70 12 10 8 8 11 10 8 7 8 50 9 12 12 7 10 8 10 10 10 8 12 7 13 13 8 8 11 6 12 9 12 13 13 12 12 10 8 12 10 10 15 12 10 12 8 8 12 12 10 12 9 12 12 10 9 10 10 10 12 12 12 12 8 10 12 15 10 8 15 10 9 12 99 10 10 11 11 12 12 14 12 14 9 10 12 13 10 11 10 12 12 12 13 14 9 10 10 12 12 10 99 8 99 12 99 12 10 12 10 12 12 12 10 12 12 10 10 12 99 12 12 9 99 12 12 9 12 12 12 15 12 12 12 8 8 12 8 12 12 10 10 12 99 8 8 99 10 10 5 9 9 99 9 10 12
Chart options
R Code
library(Hmisc) m <- mean(x) e <- median(x) bitmap(file='test1.png') op <- par(mfrow=c(2,1)) mydensity1 <- density(x,kernel='gaussian',na.rm=TRUE) plot(mydensity1,main='Density Plot - Gaussian Kernel',xlab='Median (0 -> full line) | Mean (0 -> dashed line)',ylab='density') abline(v=e,lty=1) abline(v=m,lty=5) grid() myseq <- seq(0.01, 0.99, 0.01) hd <- hdquantile(x, probs = myseq, se = TRUE, na.rm = FALSE, names = TRUE, weights=FALSE) plot(myseq,hd,col=2,main='Harrell-Davis Quantiles',xlab='quantiles',ylab='Median (0 -> full) | Mean (0 -> dashed)') abline(h=m,lty=5) abline(h=e,lty=1) grid() par(op) dev.off() load(file='createtable') a<-table.start() a<-table.row.start(a) a<-table.element(a,'Median versus Mean',2,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'mean',header=TRUE) a<-table.element(a,mean(x)) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'median',header=TRUE) a<-table.element(a,median(x)) a<-table.row.end(a) a<-table.end(a) table.save(a,file='mytable.tab')
Compute
Summary of computational transaction
Raw Input
view raw input (R code)
Raw Output
view raw output of R engine
Computing time
1 seconds
R Server
Big Analytics Cloud Computing Center
Click here to blog (archive) this computation