Free Statistics

of Irreproducible Research!

Author's title

Author*The author of this computation has been verified*
R Software ModuleIan.Hollidayrwasp_Shapiro-Wilks Test for Normality.wasp
Title produced by softwareAston University Statistical Software
Date of computationTue, 20 Apr 2010 09:05:58 +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/Apr/20/t1271754413nm7lz87by0glale.htm/, Retrieved Thu, 25 Apr 2024 01:20:29 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=74670, Retrieved Thu, 25 Apr 2024 01:20:29 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact255
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-     [Aston University Statistical Software] [Shapiro_+Wilk Tes...] [2010-03-22 18:08:07] [98fd0e87c3eb04e0cc2efde01dbafab6]
-    D    [Aston University Statistical Software] [project 1a] [2010-04-20 09:05:58] [04ab4c38fa9b627dffda5731b967a02a] [Current]
-           [Aston University Statistical Software] [Normality test fo...] [2010-05-10 05:51:02] [a430456785575c896201d80fdb248d9f]
Feedback Forum

Post a new message
Dataseries X:
29
23
30
20
22
24
24
20
24
30
23
23
32
21
25




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=74670&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=74670&T=0

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







Shapiro Test
StatisticP-value
Shapiro Wilks Test for Normality0.88930.06544

\begin{tabular}{lllllllll}
\hline
Shapiro Test \tabularnewline
 & Statistic & P-value \tabularnewline
Shapiro Wilks Test for Normality & 0.8893 & 0.06544 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=74670&T=1

[TABLE]
[ROW][C]Shapiro Test[/C][/ROW]
[ROW][C][/C][C]Statistic[/C][C]P-value[/C][/ROW]
[ROW][C]Shapiro Wilks Test for Normality[/C][C]0.8893[/C][C]0.06544[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=74670&T=1

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=74670&T=1

As an alternative you can also use a QR Code:  

The GUIDs for individual cells are displayed in the table below:

Shapiro Test
StatisticP-value
Shapiro Wilks Test for Normality0.88930.06544



Parameters (Session):
Parameters (R input):
R code (references can be found in the software module):
x <- t(y)
load(file='createtable')
a<-table.start()
a <- table.row.start(a)
a <- table.element(a,'Shapiro Test',3,TRUE)
a <- table.row.end(a)
a <- table.row.start(a)
a <- table.element(a,'',1,TRUE)
a <- table.element(a,'Statistic',1,TRUE)
a <- table.element(a,'P-value',1,TRUE)
a <- table.row.end(a)
W <- shapiro.test(x)
a<-table.row.start(a)
a<-table.element(a,'Shapiro Wilks Test for Normality',1,TRUE)
a<-table.element(a,round(W$statistic[[1]], digits=5))
a<-table.element(a,round(W$p.value, digits=5) )
a<-table.row.end(a)
table.save(a,file='mytable.tab')