Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data:
87.1 105 120.3 97 109.9 111.7 74 82.8 116.1 117.6 112.2 100 95.4 102.3 118.3 98.2 119 112.8 73.3 89 111.8 115.4 111.2 99.9 95.2 99.8 108.5 102.7 100.7 107.9 78.5 75.3 110.4 110.5 93.4 92.7 92.2 93.3 95.5 100.6 89.3 96 80 79.1 112.4 110.2 93.3 95.3 86.5 94.1 108.2 91.3 84.9 105.9 81 78.8 111.7 105.3 98.8 100.3 84.5 94.1 102.5 96.8 93.4 111 71.5 81.2 117.3 104.8 116.9 105.9 96.8 101.6 116.2 100.3 107.7 108.4 75.1 88.3 115.4 116.4 109.5 101.8 91.9 96.5 111.5 91.7 99 112 74.4 92.8 115.9 126.6 112 106.6 85.8 95.6 106 105.3 100 106.4 84.5 82.9 118.3 124.8 88.5 86.7 82 84.6 98.9 90.3 86.6 103.9 71.7 78.7 108.5 102.9 98.7 95 83.2 86.3 108.8 93.8 87.9 110.6 84.6 83.3 115.9 112.4 111.8 121.4 96.8 108.7 124.4 97.2 117.3 105.3 94.9 101.4 130.6 110.4 112.3 107.8 100.9 116.7 126.5 104.7 109.6 131.5 93.3 97.1 122.6 119 117.5 104.1 94.1 103.5 111.3 110.7 107.7 108.5 85.4 83.2 105.4 111.8 104 102.1 92 102.5 109.1 98.5 95.1 101.6 84.4 78.7 114.7 116.4 93.2 106 87.9 97.5 108.2 103.5 93.1 113.7 73.2 77.3 107.1 106.9 96.6 101 87.5 101.8 110.8 96.3 97.9 114.8 77.4 87 106.6 101.8 96.6 96.4 85.4 88.9 108.6 86.7 90.7 105.1 76.8 78.7
Name of dataseries
Source
Description
Season
12
12
6
4
No season
Chart options
Title:
Label y-axis:
Label x-axis:
Y-axis minimum
Y-axis maximum
R Code
if (par4 != 'No season') { par4 <- as.numeric(par4) if (par4 < 4) par4 <- 12 } summary(x) n <- length(x) bitmap(file='test1.png') if (par4=='No season') { plot(x,col=2,type='b',main=main,xlab=xlab,ylab=ylab,xaxt='n') axis(1,at=seq(1,n,10)) } if (par4!='No season') { plot(x,col=2,type='b',main=main,xlab=xlab,ylab=ylab,xaxt='n') axis(1,at=seq(1,n,par4)) grid(nx=0,ny=NULL,col='black') abline(v=seq(1,n,par4),col='black',lty='dotted') } dev.off() load(file='createtable') a<-table.start() a<-table.row.start(a) a<-table.element(a,'Univariate Dataseries',2,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Name of dataseries',header=TRUE) a<-table.element(a,par1) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Source',header=TRUE) a<-table.element(a,par2) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Description',header=TRUE) a<-table.element(a,par3) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Number of observations',header=TRUE) a<-table.element(a,length(x)) a<-table.row.end(a) a<-table.end(a) table.save(a,file='mytable.tab') a<-table.start() a<-table.row.start(a) a<-table.element(a,'Summary Statistics of dataseries x',1,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,paste('<pre>',RC.texteval('summary(x)'),'</pre>',sep='')) a<-table.row.end(a) a<-table.end(a) table.save(a,file='mytable1.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