Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data:
5750.5 3881.6 4350.4 6623.4 3375.5 6651.7 4394.8 4968.3 6355.6 4515.7 4620 5804.4 6254.4 4788.6 4446.4 8018 3745.9 6928.2 5201.7 5520.9 6801.9 5225.1 5149.4 6240.4 7045.4 5402.1 4960.6 9459.3 3979.4 7215.1 5797 5577.6 7380.8 5788.6 5116.3 6819.3 7671 5337 4955.7 9143.8 4624.6 7702.4 6297.4 5652.3 7801.3 5901.2 5296.7 7803.5 8177.1 5546.3 5651.5 12289.7 4769.1 8294.5 6422.3 6021.3 9241 6229.5 5691.5 8546.9 8174 6027.9 6566.4 10926.6 5963.5 9914 6063.1 6939 9774.2 6358.2 6432 9365.5 8930.6 6189.7 6820.5 12889.2 7102.5 10824.9 6619.1 7613.6 9923.3 6842.6 7121.3 8913 9952.4 6514.1 6480.5 13960.4 6918.6 11060.1 7232.9 7846.2 10293.9 7698.6 7050.7 10190 10071.3 6765.7 6480.5 14038 6356 10338.9 7859.3 7642.6 10935 7806.5 7309.5 10363.6 10403.1 6274.7 7212.7 13835.1 6218.4 12087.8 7905 7810.1
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
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