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, 19 Sep 2013 12:53:21 -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/19/t1379609685o6fbm440gddr5h3.htm/, Retrieved Mon, 29 Apr 2024 17:08:57 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=211545, Retrieved Mon, 29 Apr 2024 17:08:57 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact121
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Univariate Data Series] [Datareeks- vleesp...] [2013-09-19 16:53:21] [14b1e901e86f0e99d3e5ae27817fa672] [Current]
Feedback Forum

Post a new message
Dataseries X:
9.99	10.46	7.42
9.94	10.41	7.43
9.86	10.39	7.4
9.72	10.26	7.35
9.59	10.18	7.3
9.48	10.21	7.31
9.46	10.06	7.33
9.46	10.12	7.33
9.4	10.1	7.23
9.53	10.12	7.21
9.61	10.13	7.3
9.58	10.14	7.26
9.54	10.09	7.26
9.5	10.06	7.24
9.51	10.05	7.26
9.45	10.04	7.26
9.4	10	7.2
9.33	9.98	7.1
9.33	9.95	7.15
9.26	9.95	7.09
9.17	9.97	6.95
9.21	10.02	7.05
9.24	9.97	7.06
9.24	9.95	6.98
9.25	9.85	6.91
9.21	9.93	6.98
9.19	9.9	7.05
9.19	9.83	6.99
9.13	9.85	6.94
9.12	9.78	6.91
9.07	9.7	6.92
9.12	9.74	6.85
9.16	9.81	6.85
9.1	9.78	6.85
9.03	9.77	6.82
9.06	9.79	6.68




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

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=211545&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'Gertrude Mary Cox' @ cox.wessa.net



Parameters (Session):
par1 = Vleesprijzen ; par2 = Belgostat ; par3 = Prijs van 3 verschillende soorten vlees ; par4 = 12 ;
Parameters (R input):
par1 = Vleesprijzen ; par2 = Belgostat ; par3 = Prijs van 3 verschillende soorten vlees ; par4 = 12 ;
R code (references can be found in the software module):
par4 <- '12'
par3 <- 'Prijs van 3 verschillende soorten vlees'
par2 <- 'Belgostat'
par1 <- 'Vleesprijzen'
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')