Free Statistics

of Irreproducible Research!

Author's title

Author*The author of this computation has been verified*
R Software Modulerwasp_smp.wasp
Title produced by softwareStandard Deviation-Mean Plot
Date of computationWed, 29 Dec 2010 10:26:25 +0000
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2010/Dec/29/t1293618287n1c5uvz40otq4yb.htm/, Retrieved Fri, 03 May 2024 05:56:01 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=116681, Retrieved Fri, 03 May 2024 05:56:01 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact135
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-     [Standard Deviation-Mean Plot] [Stefan Temmerman] [2008-12-10 18:26:26] [4c0c0466a42d9212e91e81695c3ab4a9]
- RM D    [Standard Deviation-Mean Plot] [] [2010-12-29 10:26:25] [e180d4cd19004beeddc12e67012247dc] [Current]
Feedback Forum

Post a new message
Dataseries X:
13139.7
14532.2
15167
16071.1
14827.5
15082
14772.7
16083
14272.5
15223.3
14897.3
13062.6
12603.8
13629.8
14421.1
13978.3
12927.9
13429.9
13470.1
14785.8
14292
14308.8
14013
13240.9
12153.4
14289.7
15669.2
14169.5
14569.8
14469.1
14264.9
15320.9
14433.5
13691.5
14194.1
13519.2
11857.9
14616
15643.4
14077.2
14887.5
14159.9
14643
17192.5
15386.1
14287.1
17526.6
14497
14398.3
16629.6
16670.7
16614.8
16869.2
15663.9
16359.9
18447.7
16889
16505
18320.9
15052.1
15699.8
18135.3
16768.7
18883
19021
18101.9
17776.1
21489.9
17065.3
18690
18953.1
16398.9
16895.7
18553
19270
19422.1
17579.4
18637.3
18076.7
20438.6
18075.2
19563
19899.2
19227.5
17789.6
19220.8
21968.9
21131.5
19484.6
22404.1
21099
22486.5
23707.5
21897.5
23326.4
23765.4
20444




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'Gwilym Jenkins' @ 72.249.127.135

\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 & 'Gwilym Jenkins' @ 72.249.127.135 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=116681&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]'Gwilym Jenkins' @ 72.249.127.135[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=116681&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=116681&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'Gwilym Jenkins' @ 72.249.127.135



Parameters (Session):
par1 = 12 ;
Parameters (R input):
par1 = 12 ;
R code (references can be found in the software module):
par1 <- as#numeric#par1#
arr <- array#NA,dim=c#par1,np##
j <- 0
k <- 1
for #i in 1:#np*par1##
{
j = j + 1
arr#j,k# <- x#i#
if #j == par1# {
j = 0
k=k+1
}
}
arr
arr#mean <- array#NA,dim=np#
arr#sd <- array#NA,dim=np#
arr#range <- array#NA,dim=np#
for #j in 1:np#
{
arr#mean#j# <- mean#arr#,j#,na#rm=TRUE#
arr#sd#j# <- sd#arr#,j#,na#rm=TRUE#
arr#range#j# <- max#arr#,j#,na#rm=TRUE# - min#arr#,j#,na#rm=TRUE#
}
arr#mean
arr#sd
arr#range
bitmap#file='test1#png'#
plot#arr#mean,arr#sd,main='Standard Deviation-Mean Plot',xlab='mean',ylab='standard deviation'#
dev#off##
bitmap#file='test2#png'#
plot#arr#mean,arr#range,main='Range-Mean Plot',xlab='mean',ylab='range'#
dev#off##
load#file='createtable'#
a<-table#start##
a<-table#row#start#a#
a<-table#element#a,'Standard Deviation-Mean Plot',4,TRUE#
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'Section',header=TRUE#
a<-table#element#a,'Mean',header=TRUE#
a<-table#element#a,'Standard Deviation',header=TRUE#
a<-table#element#a,'Range',header=TRUE#
a<-table#row#end#a#
for #j in 1:np# {
a<-table#row#start#a#
a<-table#element#a,j,header=TRUE#
a<-table#element#a,arr#mean#j##
a<-table#element#a,arr#sd#j# #
a<-table#element#a,arr#range#j# #
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,'Regression: S#E##k# = alpha + beta * Mean#k#',2,TRUE#
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'alpha',header=TRUE#
a<-table#element#a,lm1$coefficients##1###
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'beta',header=TRUE#
a<-table#element#a,lm1$coefficients##2###
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'S#D#',header=TRUE#
a<-table#element#a,summary#lm1#$coefficients#2,2##
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'T-STAT',header=TRUE#
a<-table#element#a,summary#lm1#$coefficients#2,3##
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'p-value',header=TRUE#
a<-table#element#a,summary#lm1#$coefficients#2,4##
a<-table#row#end#a#
a<-table#end#a#
table#save#a,file='mytable1#tab'#
a<-table#start##
a<-table#row#start#a#
a<-table#element#a,'Regression: ln S#E##k# = alpha + beta * ln Mean#k#',2,TRUE#
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'alpha',header=TRUE#
a<-table#element#a,lnlm1$coefficients##1###
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'beta',header=TRUE#
a<-table#element#a,lnlm1$coefficients##2###
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'S#D#',header=TRUE#
a<-table#element#a,summary#lnlm1#$coefficients#2,2##
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'T-STAT',header=TRUE#
a<-table#element#a,summary#lnlm1#$coefficients#2,3##
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'p-value',header=TRUE#
a<-table#element#a,summary#lnlm1#$coefficients#2,4##
a<-table#row#end#a#
a<-table#row#start#a#
a<-table#element#a,'Lambda',header=TRUE#
a<-table#element#a,1-lnlm1$coefficients##2###
a<-table#row#end#a#
a<-table#end#a#
table#save#a,file='mytable2.tab'#