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 computationFri, 04 Jun 2010 17:42:29 +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/Jun/04/t1275673393qd7pn7apizo5upj.htm/, Retrieved Sun, 28 Apr 2024 23:05:58 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=77484, Retrieved Sun, 28 Apr 2024 23:05:58 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact124
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-     [Histogram and QQPlot (Reddy-Moores Data)] [Obestity data - a...] [2010-06-04 16:23:26] [74be16979710d4c4e7c6647856088456]
- RMPD  [Kolmogorov-Smirnov Test] [Obestity data - K...] [2010-06-04 17:33:55] [98fd0e87c3eb04e0cc2efde01dbafab6]
- RM D      [Aston University Statistical Software] [Obseity data - gr...] [2010-06-04 17:42:29] [a9208f4f8d3b118336aae915785f2bd9] [Current]
- RM D        [T-Tests] [obesity weight lo...] [2010-06-04 18:00:35] [98fd0e87c3eb04e0cc2efde01dbafab6]
- R  D          [T-Tests] [obesity data - on...] [2010-06-04 18:14:50] [98fd0e87c3eb04e0cc2efde01dbafab6]
- RM D            [One-Way-Between-Groups ANOVA- Free Statistics Software (Calculator)] [obestity data ANOVA] [2010-06-04 18:31:09] [98fd0e87c3eb04e0cc2efde01dbafab6]
Feedback Forum

Post a new message
Dataseries X:
-2.7
-1
-1
-0.4
0.1
0.4
0.5
0.6
0.9
1.1
1.3
1.4
1.6
1.6
3.4
3.5
3.7
5
5.9




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

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







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

\begin{tabular}{lllllllll}
\hline
Shapiro Test \tabularnewline
 & Statistic & P-value \tabularnewline
Shapiro Wilks Test for Normality & 0.96217 & 0.61571 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=77484&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.96217[/C][C]0.61571[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=77484&T=1

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



Parameters (Session):
par1 = two.sided ; par2 = 1 ; par3 = 2 ;
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')