Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_univariatedataseries.wasp
Title produced by softwareUnivariate Data Series
Date of computationThu, 21 Feb 2013 11:16:59 -0500
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2013/Feb/21/t1361463967zrv26caa0bykczc.htm/, Retrieved Thu, 02 May 2024 17:33:42 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=206779, Retrieved Thu, 02 May 2024 17:33:42 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywordshealth index Belgium 2004
Estimated Impact56
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Univariate Data Series] [Health index Belg...] [2013-02-21 16:16:59] [d41d8cd98f00b204e9800998ecf8427e] [Current]
Feedback Forum

Post a new message
Dataseries X:
Jan-07	104,92
Feb-07	105,46
Mar-07	105,23
Apr-07	105,58
May-07	105,34
Jun-07	105,28
Jul-07	105,70
Aug-07	105,67
Sep-07	105,71
Oct-07	106,19
Nov-07	106,93
Dec-07	107,44
Jan-08	107,85
Feb-08	108,71
Mar-08	109,32
Apr-08	109,49
May-08	110,20
Jun-08	110,62
Jul-08	111,22
Aug-08	110,88
Sep-08	111,15
Oct-08	111,29
Nov-08	111,09
Dec-08	111,24
Jan-09	111,45
Feb-09	111,75
Mar-09	111,07
Apr-09	111,17
May-09	110,96
Jun-09	110,50
Jul-09	110,48
Aug-09	110,66
Sep-09	110,46
Oct-09	110,64
Nov-09	110,75
Dec-09	110,96
Jan-10	111,36
Feb-10	111,90
Mar-10	112,11
Apr-10	112,34
May-10	112,72
Jun-10	112,74
Jul-10	112,86
Aug-10	112,94
Sep-10	113,29
Oct-10	113,46
Nov-10	113,55
Dec-10	113,84
Jan-11	114,38
Feb-11	115,05
Mar-11	115,39
Apr-11	115,57
May-11	115,98
Jun-11	116,43
Jul-11	116,61
Aug-11	116,49
Sep-11	116,73
Oct-11	116,96
Nov-11	117,40
Dec-11	117,52
Jan-12	118,25
Feb-12	118,97
Mar-12	119,01
Apr-12	118,99
May-12	119,15
Jun-12	119,00
Jul-12	119,21
Aug-12	119,47
Sep-12	119,52
Oct-12	119,87
Nov-12	119,95
Dec-12	120,06




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'George Udny Yule' @ yule.wessa.net

\begin{tabular}{lllllllll}
\hline
Summary of computational transaction \tabularnewline
Raw Input & view raw input (R code)  \tabularnewline
Raw Output & view raw output of R engine  \tabularnewline
Computing time & 1 seconds \tabularnewline
R Server & 'George Udny Yule' @ yule.wessa.net \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=206779&T=0

[TABLE]
[ROW][C]Summary of computational transaction[/C][/ROW]
[ROW][C]Raw Input[/C][C]view raw input (R code) [/C][/ROW]
[ROW][C]Raw Output[/C][C]view raw output of R engine [/C][/ROW]
[ROW][C]Computing time[/C][C]1 seconds[/C][/ROW]
[ROW][C]R Server[/C][C]'George Udny Yule' @ yule.wessa.net[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=206779&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=206779&T=0

As an alternative you can also use a QR Code:  

The GUIDs for individual cells are displayed in the table below:

Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'George Udny Yule' @ yule.wessa.net



Parameters (Session):
par1 = health index ; par4 = 12 ;
Parameters (R input):
par1 = health index ; par2 = ; par3 = ; par4 = 12 ;
R code (references can be found in the software module):
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')