Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_meanversusmedian.wasp
Title produced by softwareMean versus Median
Date of computationTue, 18 Aug 2009 11:13:58 -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/Aug/18/t1250615682sb13vjcnzs8gfl0.htm/, Retrieved Mon, 06 May 2024 23:48:53 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=42854, Retrieved Mon, 06 May 2024 23:48:53 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact132
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Mean versus Median] [Opgave 5 - Oefeni...] [2009-08-18 17:13:58] [594470f14259f7e0de407f0568e168f2] [Current]
Feedback Forum

Post a new message
Dataseries X:
12,11
11,42
11,71
12,04
12,21
12
12,36
12,32
12,96
12,79
13,19
12,34
13,25
12,54
12,77
12,96
13
13,61
13,8
14,16
14,27
14,69
15,01
15,09
15,14
14,2
13,83
14,31
14,04
14,9
14,92
15,36
15,5
15,65
16,18
15,44
15,58
15,24
15,33
16,07
15,82
15,87
15,72
17,07
16,83
17,52
17,76
17,36
17,95
16,71
17,14
16,72
17,26
17,24
17,69
18,13
18,08
18,18
18,18
17,64
17,89
16,82
16,61
16,66
17,02
16,91
17,18
18,06
17,58
17,48
17,54
17,44
17,79
16,79
16,19
16,62
16,39
16,54
17,26
18
17,29
18,16
17,82
17,48
18,31
17,04
17,03
16,97
17,11
17,12
17,69
18,5
18,27
18,45
18,35
18,03
18,49
18,07
17,8
17,88
18,12
18,68
18,8
19,64
19,56
19,3
20,07
19,82
20,29
19,36
18,74
18,87
18,87
18,91
19,31
20,06
20,72
20,42
20,58
20,58
21,18
19,87
19,83
19,48
19,49
19,4
19,89
20,44
20,07
19,75
19,54
19,07




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time2 seconds
R Server'Sir Ronald Aylmer Fisher' @ 193.190.124.24

\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 & 'Sir Ronald Aylmer Fisher' @ 193.190.124.24 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=42854&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]'Sir Ronald Aylmer Fisher' @ 193.190.124.24[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=42854&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=42854&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'Sir Ronald Aylmer Fisher' @ 193.190.124.24







Median versus Mean
mean16.8674242424242
median17.26

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

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

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



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')