Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_sdplot.wasp
Title produced by softwareStandard Deviation Plot
Date of computationThu, 04 Jun 2009 07:30:21 -0600
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2009/Jun/04/t1244122247bs4mut98mt4o75z.htm/, Retrieved Tue, 14 May 2024 00:25:05 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=41655, Retrieved Tue, 14 May 2024 00:25:05 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact143
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-     [Mean Plot] [Brutoschuld van d...] [2009-06-04 10:54:18] [ef653b42671acc8de32235b938c43afe]
- RMP   [(Partial) Autocorrelation Function] [Brutoschuld van d...] [2009-06-04 11:03:57] [ef653b42671acc8de32235b938c43afe]
- RMPD    [Bootstrap Plot - Central Tendency] [Studio 100 maximu...] [2009-06-04 11:35:38] [ef653b42671acc8de32235b938c43afe]
-   P       [Bootstrap Plot - Central Tendency] [Studio 100 maximu...] [2009-06-04 11:56:22] [ef653b42671acc8de32235b938c43afe]
- RMPD        [Blocked Bootstrap Plot - Central Tendency] [Brutoschuld van d...] [2009-06-04 12:31:11] [ef653b42671acc8de32235b938c43afe]
-   P           [Blocked Bootstrap Plot - Central Tendency] [Brutoschuld van d...] [2009-06-04 12:33:42] [ef653b42671acc8de32235b938c43afe]
- RMP               [Standard Deviation Plot] [Brutoschuld van d...] [2009-06-04 13:30:21] [2eea656d1ea82c4ced0e8e79cdac0617] [Current]
Feedback Forum

Post a new message
Dataseries X:
321.935
310.215
309.030
305.333
294.735
289.351
288.225
289.648
290.155
288.301
289.148
289.741
287.595
285.226
287.816
283.519
290.304
282.166
280.041
282.500
279.913
277.793
281.229
275.363
273.547
270.601
273.338
271.917
273.985
273.911
270.798
271.115
271.344
274.525
276.663
273.784
274.027
269.160
270.491
270.846
270.333
272.599
272.764
270.674
268.175
268.351
272.482
268.714
269.419
265.518
264.101
267.179
271.322
270.157
271.296
269.907
271.244
266.844
270.911
269.829
269.285
263.018
266.680
265.814
268.457
269.508
270.223
264.676
265.521
262.971
266.003
267.722
266.433




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time2 seconds
R Server'George Udny Yule' @ 72.249.76.132

\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 & 2 seconds \tabularnewline
R Server & 'George Udny Yule' @ 72.249.76.132 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=41655&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]2 seconds[/C][/ROW]
[ROW][C]R Server[/C][C]'George Udny Yule' @ 72.249.76.132[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=41655&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=41655&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 time2 seconds
R Server'George Udny Yule' @ 72.249.76.132



Parameters (Session):
par1 = 4 ;
Parameters (R input):
par1 = 12 ;
R code (references can be found in the software module):
par1 <- as.numeric(par1)
(n <- length(x))
(np <- floor(n / par1))
arr <- array(NA,dim=c(par1,np+1))
ari <- array(0,dim=par1)
j <- 0
for (i in 1:n)
{
j = j + 1
ari[j] = ari[j] + 1
arr[j,ari[j]] <- x[i]
if (j == par1) j = 0
}
ari
arr
arr.sd <- array(NA,dim=par1)
arr.range <- array(NA,dim=par1)
arr.iqr <- array(NA,dim=par1)
for (j in 1:par1)
{
arr.sd[j] <- sqrt(var(arr[j,],na.rm=TRUE))
arr.range[j] <- max(arr[j,],na.rm=TRUE) - min(arr[j,],na.rm=TRUE)
arr.iqr[j] <- quantile(arr[j,],0.75,na.rm=TRUE) - quantile(arr[j,],0.25,na.rm=TRUE)
}
overall.sd <- sqrt(var(x))
overall.range <- max(x) - min(x)
overall.iqr <- quantile(x,0.75) - quantile(x,0.25)
bitmap(file='plot1.png')
plot(arr.sd,type='b',ylab='S.D.',main='Standard Deviation Plot',xlab='Periodic Index')
mtext(paste('# blocks = ',np))
abline(overall.sd,0)
dev.off()
bitmap(file='plot2.png')
plot(arr.range,type='b',ylab='range',main='Range Plot',xlab='Periodic Index')
mtext(paste('# blocks = ',np))
abline(overall.range,0)
dev.off()
bitmap(file='plot3.png')
plot(arr.iqr,type='b',ylab='IQR',main='Interquartile Range Plot',xlab='Periodic Index')
mtext(paste('# blocks = ',np))
abline(overall.iqr,0)
dev.off()
bitmap(file='plot4.png')
z <- data.frame(t(arr))
names(z) <- c(1:par1)
(boxplot(z,notch=TRUE,col='grey',xlab='Periodic Index',ylab='Value',main='Notched Box Plots - Periodic Subseries'))
dev.off()
bitmap(file='plot5.png')
z <- data.frame(arr)
names(z) <- c(1:np)
(boxplot(z,notch=TRUE,col='grey',xlab='Block Index',ylab='Value',main='Notched Box Plots - Sequential Blocks'))
dev.off()
bitmap(file='plot6.png')
z <- data.frame(cbind(arr.sd,arr.range,arr.iqr))
names(z) <- list('S.D.','Range','IQR')
(boxplot(z,notch=TRUE,col='grey',ylab='Overall Variability',main='Notched Box Plots'))
dev.off()