Free Statistics

of Irreproducible Research!

Author's title

Author*The author of this computation has been verified*
R Software Modulerwasp_meanversusmedian.wasp
Title produced by softwareMean versus Median
Date of computationTue, 16 Dec 2014 13:59:14 +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/2014/Dec/16/t1418738408wj6ywwn60yqpsla.htm/, Retrieved Thu, 16 May 2024 16:45:45 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=269575, Retrieved Thu, 16 May 2024 16:45:45 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact72
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-     [Two-Way ANOVA] [] [2010-11-02 14:42:14] [b98453cac15ba1066b407e146608df68]
- RMP   [Two-Way ANOVA] [] [2014-10-21 08:34:19] [32b17a345b130fdf5cc88718ed94a974]
- RMPD      [Mean versus Median] [gemiddelde CH paper] [2014-12-16 13:59:14] [ca907db95fc0b179b22bb0898c34dff4] [Current]
Feedback Forum

Post a new message
Dataseries X:
108
10
66
23
25
56
73
34
72
42
74
16
66
9
41
57
48
51
53
55
51
79
39
55
30
55
22
37
2
38
27
56
25
39
33
43
43
23
44
28
39
23
24
29
78
57
37
27
44
39
51
31
24
30
27
14
28
41
31
74
19
51
51
62
59
24
54
39
16
36
31
31
42
39
25
31
38
31
17
22
55
62
51
49
16
12
45
37
37
68
72
143
9
55
17
37
27
37
58
21
19
78
35
48
27
43
30
25
69
72
13
61
43
22
51
67
36
21
44
45
34
36
72
39
43
80
40
61
23
29
29
54
43
20
61
57
54
36
16
40
27
61
69
34
21
34
34
13
12
51
19
81
42
22
85
25
22
19
45
45
51
24
73
24
61
23
14
54
36
26
30




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

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







Median versus Mean
mean41.0233918128655
median38

\begin{tabular}{lllllllll}
\hline
Median versus Mean \tabularnewline
mean & 41.0233918128655 \tabularnewline
median & 38 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=269575&T=1

[TABLE]
[ROW][C]Median versus Mean[/C][/ROW]
[ROW][C]mean[/C][C]41.0233918128655[/C][/ROW]
[ROW][C]median[/C][C]38[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=269575&T=1

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

As an alternative you can also use a QR Code:  

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

Median versus Mean
mean41.0233918128655
median38



Parameters (Session):
Parameters (R input):
R code (references can be found in the software module):
library(Hmisc)
m <- mean(x)
e <- median(x)
bitmap(file='test1.png')
op <- par(mfrow=c(2,1))
mydensity1 <- density(x,kernel='gaussian',na.rm=TRUE)
plot(mydensity1,main='Density Plot - Gaussian Kernel',xlab='Median (0 -> full line) | Mean (0 -> dashed line)',ylab='density')
abline(v=e,lty=1)
abline(v=m,lty=5)
grid()
myseq <- seq(0.01, 0.99, 0.01)
hd <- hdquantile(x, probs = myseq, se = TRUE, na.rm = FALSE, names = TRUE, weights=FALSE)
plot(myseq,hd,col=2,main='Harrell-Davis Quantiles',xlab='quantiles',ylab='Median (0 -> full) | Mean (0 -> dashed)')
abline(h=m,lty=5)
abline(h=e,lty=1)
grid()
par(op)
dev.off()
load(file='createtable')
a<-table.start()
a<-table.row.start(a)
a<-table.element(a,'Median versus Mean',2,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'mean',header=TRUE)
a<-table.element(a,mean(x))
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'median',header=TRUE)
a<-table.element(a,median(x))
a<-table.row.end(a)
a<-table.end(a)
table.save(a,file='mytable.tab')