Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_univariatedataseries.wasp
Title produced by softwareUnivariate Data Series
Date of computationWed, 18 Sep 2013 09:48:32 -0400
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/Sep/18/t1379512124d440ly67iv72qok.htm/, Retrieved Sun, 28 Apr 2024 12:18:07 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=211492, Retrieved Sun, 28 Apr 2024 12:18:07 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact91
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Univariate Data Series] [] [2013-09-18 13:48:32] [a1de13929df8f72ca0bba4a56316571d] [Current]
Feedback Forum

Post a new message
Dataseries X:
3.876,00
3.878,00
3.881,00
3.883,20
3.884,00
3.884,50
3.894,80
3.903,30
3.911,20
3.928,90
3.945,50
3.965,20
3.992,20
4.009,50
4.015,20
4.020,10
4.036,90
4.059,10
4.082,80
4.102,20
4.126,40
4.144,70
4.161,50
4.168,50
4.177,70
4.173,80
4.167,50
4.169,60
4.158,70
4.158,90
4.143,30
4.158,90
4.166,50
4.175,80
4.184,60
4.194,90
4.209,70
4.226,10
4.250,20
4.258,90
4.269,50
4.277,00
4.286,10
4.303,30
4.320,00
4.336,20
4.351,90
4.371,40
4.391,80
4.415,30
4.441,50
4.457,40
4.472,10
4.474,10
4.461,00
4.452,80
4.446,10
4.449,90
4.458,60
4.473,60
4.492,10
4.508,80
4.526,30
4.541,30
4.549,90
4.561,90
4.555,10
4.553,50
4.550,50
4.553,10
4.541,50
4.540,40




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'Sir Maurice George Kendall' @ kendall.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 & 'Sir Maurice George Kendall' @ kendall.wessa.net \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=211492&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]'Sir Maurice George Kendall' @ kendall.wessa.net[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=211492&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=211492&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'Sir Maurice George Kendall' @ kendall.wessa.net



Parameters (Session):
par1 = Binnenlandse werkgelegenheid ; par2 = http://www.belgostat.be ; par3 = Werkende personen van de totale binnenlandse arbeidsmarkt in België per bedrijfstak. ; par4 = 4 ;
Parameters (R input):
par1 = Binnenlandse werkgelegenheid ; par2 = http://www.belgostat.be ; par3 = Werkende personen van de totale binnenlandse arbeidsmarkt in België per bedrijfstak. ; par4 = 4 ;
R code (references can be found in the software module):
par4 <- '4'
par3 <- 'Werkende personen van de totale binnenlandse arbeidsmarkt in België per bedrijfstak.'
par2 <- 'http://www.belgostat.be'
par1 <- 'Binnenlandse werkgelegenheid'
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')