Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data:
26 51 57 37 67 43 52 52 43 84 67 49 70 52 58 68 62 43 56 56 74 65 63 58 57 63 53 57 51 64 53 29 54 51 58 43 51 53 54 56 61 47 39 48 50 35 30 68 49 61 67 47 56 50 43 67 62 57 41 54 45 48 61 56 41 43 53 44 66 58 46 37 51 51 56 66 45 37 59 42 38 66 34 53 49 55 49 59 40 58 60 63 56 54 52 34 69 32 48 67 58 57 42 64 58 66 26 61 52 51 55 50 60 56 63 61 52 16 46 56 52 55 50 59 60 52 44 67 52 55 37 54 72 51 48 60 50 63 33 67 46 54 59 61 33 47 69 52 55 55 41 73 51 52 50 51 60 56 56 29 66 66 73 55 64 40 46 58 43 61 51 50 52 54 66 61 80 51 56 56 56 53 47 25 47 46 50 39 51 58 35 58 60 62 63 53 46 67 59 64 38 50 48 48 47 66 47 63 58 44 51 43 55 38 56 45 50 54 57 60 55 56 49 37 43 59 46 51 58 64 53 48 51 47 59 62 62 51 64 52 67 50 54 58 56 63 31 65 71 50 57 47 54 47 57 43 41 63 63 56 51 50 22 41 59 56 66 53 42 52 54 44 62 53 50 36 76 66 62 59 47 55 58 60 44 57 45 58 51 57 30 46 51 56 58 44 14 53 42 49 44 62 30 46 56 50 54 48 55 35 55 41 59 54 66 55 45 51 47 42 53 53 41 55 55 46 63 43 65 59 39 44 60 57 67 52 52 69 46 46 53 40 70 54 77 45 60 47 50 66 60 41 53 34 51 69 60 45 58 39 51 52 49 63 44 51 52 60 53 53 52 31 51 65 51 49 61 58 62 54 52 72 50 65 53 56 63 62 66 50 45 58 52 53 68 59 58 52 45 58 70 69 71 46 58 39 46 64 67 44 54 41 68 63 57 61 39 69 64 38 59 51 59 51 65 47 50 57 21 47 51 37 67 43 58 51 40 41 58 64 64 58 50 59 55 59 58 41 56 63 77 60 58 64 47 46 62 60 50 46 44 58 56 43 54 54 56 65 66 62 58 67 25 56 53 56 59 46 49 56 76 33 49 53 58 72 51 42 69 51 54 52 59 51 67 64 58 53
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
par2 <- '0' par1 <- '8' 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