Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_univariatedataseries.wasp
Title produced by softwareUnivariate Data Series
Date of computationSat, 12 Aug 2017 19:30:26 +0200
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2017/Aug/12/t1502559049cljg3oxlkrk02st.htm/, Retrieved Sun, 19 May 2024 19:44:39 +0200
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=, Retrieved Sun, 19 May 2024 19:44:39 +0200
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact0
Dataseries X:
14741900,00
14195900,00
15014900,00
12011900,00
15560900,00
15287900,00
16379900,00
16925900,00
18836900,00
16379900,00
15560900,00
19382900,00
16379900,00
12284900,00
14468900,00
10919900,00
15287900,00
12557900,00
16652900,00
15014900,00
15833900,00
17744900,00
17471900,00
20747900,00
15014900,00
12557900,00
13922900,00
10100900,00
14468900,00
11192900,00
15833900,00
15014900,00
13376900,00
19109900,00
17198900,00
19655900,00
14741900,00
13649900,00
12284900,00
10100900,00
13376900,00
12011900,00
16379900,00
15833900,00
13649900,00
18290900,00
16925900,00
21839900,00
17471900,00
10646900,00
10646900,00
10646900,00
12557900,00
12557900,00
16925900,00
15560900,00
13922900,00
17471900,00
16106900,00
23204900,00
18290900,00
10646900,00
11192900,00
9281900,00
12830900,00
14741900,00
18563900,00
18290900,00
14741900,00
17198900,00
15287900,00
21839900,00
16652900,00
13376900,00
12011900,00
9008900,00
13376900,00
16106900,00
18836900,00
17744900,00
13103900,00
18836900,00
14741900,00
22658900,00
18836900,00
13649900,00
12557900,00
8462900,00
13376900,00
12830900,00
19382900,00
19382900,00
14741900,00
19109900,00
14195900,00
22112900,00
18836900,00
13922900,00
10646900,00
7370900,00
14468900,00
13922900,00
18290900,00
21020900,00
15560900,00
17471900,00
13103900,00
22658900,00




Summary of computational transaction
Raw Input view raw input (R code)
Raw Outputview raw output of R engine
Computing time0 seconds
R ServerBig Analytics Cloud Computing Center

\begin{tabular}{lllllllll}
\hline
Summary of computational transaction \tabularnewline
Raw Input view raw input (R code)  \tabularnewline
Raw Outputview raw output of R engine  \tabularnewline
Computing time0 seconds \tabularnewline
R ServerBig Analytics Cloud Computing Center \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=&T=0

[TABLE]
[ROW]
Summary of computational transaction[/C][/ROW] [ROW]Raw Input[/C] view raw input (R code) [/C][/ROW] [ROW]Raw Output[/C]view raw output of R engine [/C][/ROW] [ROW]Computing time[/C]0 seconds[/C][/ROW] [ROW]R Server[/C]Big Analytics Cloud Computing Center[/C][/ROW] [/TABLE] Source: https://freestatistics.org/blog/index.php?pk=&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=&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 Input view raw input (R code)
Raw Outputview raw output of R engine
Computing time0 seconds
R ServerBig Analytics Cloud Computing Center



Parameters (Session):
par1 = Verkochte exemplaren van de "Washington Post" ; par2 = niet gekend ; par3 = Deze cijferreeks geeft het aantal verkochte exemplaren van de "Washington Post" weer van januari 2008 tot en met december 2016 ; par4 = 12 ;
Parameters (R input):
par1 = Verkochte exemplaren van de "Washington Post" ; par2 = niet gekend ; par3 = Deze cijferreeks geeft het aantal verkochte exemplaren van de "Washington Post" weer van januari 2008 tot en met december 2016 ; 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')
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('
',RC.texteval('summary(x)'),'
',sep=''))
a<-table.row.end(a)
a<-table.end(a)
table.save(a,file='mytable1.tab')