Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data:
18 23 23 22 22 19 25 28 16 28 21 22 24 24 26 28 24 20 26 21 28 27 23 24 24 22 21 25 20 21 26 23 21 27 27 25 23 25 23 19 22 24 19 21 27 25 25 23 17 28 25 20 25 21 24 28 20 19 24 21 24 23 18 27 25 20 21 23 27 24 27 24 23 24 21 23 22 27 24 25 19 24 25 23 23 25 26 26 16 23 26 25 23 26 22 20 27 20 22 24 21 24 26 24 24 27 25 27 19 22 22 25 23 24 24 23 22 24 19 25 26 18 24 28 23 19 19 27 24 26 21 25 28 19 20 26 27 23 18 23 21 23 22 21 14 24 26 24 26 22 20 20 20 18 18 25 28 23 20 22 27 24 23 20 22 21 24 26 24 18 17 23 21 21 24 22 24 24 24 23 21 24 19 19 23 25 24 21 18 23 20 23 23 23 23 27 19 25 25 21 25 17 22 23 27 27 5 19 24 23 28 25 27 16 23 25 26 24 23 24 27 25 19 19 14 24 20 21 28 26 19 23 23 21 26 25 25 24 23 22 27 26 23 22 26 22 17 25 22 28 22 21 21 24 26 26 24 27 22 23 22 23 15 20 22 25 27 24 21 17 26 20 22 24 23 22 28 21 24 28 25 24 24 21 20 26 16 23 16 25 15 25 22 19 22 24 10 24 23 22 22 26 24 23 26 27 28 21 23 25 23 22 23 22 27 24 24 20 19 23 21 27 19 25 25 24 26 21 22 26 20 21 21 28 24 19 23 25 27 18 26 14 25 23 24 20 19 25 19 23 23 17 24 22 20 23 22 20 23 22 21 22 26 24 28 24 26 20 26 21 26 22 21 25 25 23 27 23 28 24 21 23 21 24 28 11 25 25 28 28 19 25 25 25 28 26 27 24 18 21 23 24 26 25 23 24 20 26 27 21 21 19 25 23 25 26 18 27 23 20 22 22 23 18 25 21 21 28 19 21 23 22 27 23 27 23 21 22 26 23 26 28 28 26 24 23 28 21 28 21 28 24 24 28 21 26 22 25 20 19 23 26 28 24 25 24 25 27 28 23 19 27 15 27 21 26 25 26 24 25 27 14 24 25 23 24 22 16 26 26 19 19 28 24 20 21 26 24
Sample Range:
(leave blank to include all observations)
From:
To:
Color code
(?)
Number of bins
(?)
Chart options
Title:
Label y-axis:
Label x-axis:
R Code
library(MASS) par1 <- as.numeric(par1) if (par2 == '0') par2 = 'Sturges' else par2 <- as.numeric(par2) x <- as.ts(x) #otherwise the fitdistr function does not work properly r <- fitdistr(x,'normal') r bitmap(file='test1.png') myhist<-hist(x,col=par1,breaks=par2,main=main,ylab=ylab,xlab=xlab,freq=F) curve(1/(r$estimate[2]*sqrt(2*pi))*exp(-1/2*((x-r$estimate[1])/r$estimate[2])^2),min(x),max(x),add=T) dev.off() load(file='createtable') a<-table.start() a<-table.row.start(a) a<-table.element(a,'Parameter',1,TRUE) a<-table.element(a,'Estimated Value',1,TRUE) a<-table.element(a,'Standard Deviation',1,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'mean',header=TRUE) a<-table.element(a,r$estimate[1]) a<-table.element(a,r$sd[1]) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'standard deviation',header=TRUE) a<-table.element(a,r$estimate[2]) a<-table.element(a,r$sd[2]) 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
0 seconds
R Server
Big Analytics Cloud Computing Center
Click here to blog (archive) this computation