Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_meanversusmedian.wasp
Title produced by softwareMean versus Median
Date of computationFri, 09 Oct 2015 13:42:43 +0100
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2015/Oct/09/t1444394582nalyuu4frl1izal.htm/, Retrieved Tue, 14 May 2024 17:03:21 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=281886, Retrieved Tue, 14 May 2024 17:03:21 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact69
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Mean versus Median] [opgave 5] [2015-10-09 12:42:43] [b43493158838656c32486372ca9c54cf] [Current]
Feedback Forum

Post a new message
Dataseries X:
84.71
85.17
84.93
85.1
85.19
85.38
85.95
86.04
85.68
85.79
85.79
86.05
86.14
86.82
86.93
87.03
87.13
87.09
87.65
87.6
87.03
87.12
87.08
87.56
87.31
87.89
88.2
87.7
88.19
88.65
89.48
89.65
89.34
89.73
89.77
90.26
90.03
91.09
90.94
91.03
91.14
91.51
91.99
91.91
91.8
91.8
91.44
91.83
91.46
92.17
91.91
92.06
92.33
92.73
93.35
93.28
93.22
93.31
93.21
93.14
93.82
94.18
94.44
94.35
94.38
94.72
95.25
95.16
94.9
95.09
95.22
95.39
96.57
97.05
97.11
97.08
97.5
97.92
98.44
98.44
98.06
98.2
98.19
98.36
98.41
98.97
99.45
98.95
99.7
100.12
100.62
100.75
100.47
100.71
100.85
101.03
101.13
101.38
101.73
101.89
102.02
102.11
102.77
102.49
102.52
102.69
102.32
102.6




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

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







Median versus Mean
mean93.345462962963
median92.935

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

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

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



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