Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data:
5248.8 5149.6 5712.8 5649.4 5718.4 5989.8 5635.2 5954 5253.6 5923.6 4830.6 4042.4 4941.6 5258.2 5853.6 5356.6 5486.8 5603.4 5203.4 5584 4965.4 5566 4199.4 3677.6 4757.2 4889.8 5500.6 5227 5198.2 5055.2 4938.2 5530 4854 5204.8 4315.4 3347.6 4687 5095.2 5104.6 5003.6 5048.6 5213 5190.2 5527.4 4656.4 5222.6 4291.4 3296.4 4461.8 3933 4059.4 4785.4 4844 4801.8 4929 5047.2 4651.8 5083.2 4525.4 3617 4596.6 4729.8 5060.8 5039 5165 5223.6 5099.6 5156 4690.6 5088.4 4461.8 3539.4 4609.8 4560.4 5115.8 4966.6 5080.2 5174 5070.2 5114 4518 5053.8 4004.6 3738.6 4355.4 4493.4 4961.2 5048.2 5070 5016.4 5156.4 5139 4620.6 5241 4301.4 3491.6 4520.8 4571 5121 5002.6 5288.4 5176.4 4960 5304.4 4489.8 5164.6 4306.4 3596.8 4450.2 4494.2 5150 4947.6 5231.8 5037.4 5094.4 5228.2 5092.4 5187.4 4376.4 3650.8 4472.6 4452.6 4823.2 4858.6 5045.6 4869.8
Name of dataseries
Source
Description
Season
12
6
4
No season
Chart options
Title:
Label y-axis:
Label x-axis:
Y-axis minimum
Y-axis maximum
R Code
par4 <- '12' par3 <- '' par2 <- '' par1 <- '' 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