Free Statistics

of Irreproducible Research!

Author's title

Author*The author of this computation has been verified*
R Software Modulerwasp_backtobackhist.wasp
Title produced by softwareBack to Back Histogram
Date of computationWed, 11 Nov 2009 08:45:06 -0700
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/Nov/11/t1257954374j62tc1kmegl850a.htm/, Retrieved Fri, 29 Mar 2024 15:46:13 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=55710, Retrieved Fri, 29 Mar 2024 15:46:13 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact183
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-     [Back to Back Histogram] [3/11/2009] [2009-11-02 21:58:53] [b98453cac15ba1066b407e146608df68]
F   PD    [Back to Back Histogram] [Workshop 6] [2009-11-11 15:45:06] [aef022288383377281176d9807aba5bf] [Current]
Feedback Forum
2009-11-20 19:43:54 [Stéphanie Van Dyck] [reply
In deze grafiek neemt de student twee tijdreeksen die een index zijn. Dit is dus goed, deze kan je aan elkaar toetsen. Maar hij benoemt de assen met 'male' en 'female'. Ik begrijp niet goed waar deze verdeling ineens van komt.
2009-11-20 19:44:18 [Stéphanie Van Dyck] [reply
In deze grafiek neemt de student twee tijdreeksen die een index zijn. Dit is dus goed, deze kan je aan elkaar toetsen. Maar hij benoemt de assen met 'male' en 'female'. Ik begrijp niet goed waar deze verdeling ineens van komt.
2009-11-20 19:44:35 [Stéphanie Van Dyck] [reply
In deze grafiek neemt de student twee tijdreeksen die een index zijn. Dit is dus goed, deze kan je aan elkaar toetsen. Maar hij benoemt de assen met 'male' en 'female'. Ik begrijp niet goed waar deze verdeling ineens van komt.

Post a new message
Dataseries X:
101
100.88
100.55
100.83
101.51
102.16
102.39
102.54
102.85
103.47
103.57
103.69
103.5
103.47
103.45
103.48
103.93
103.89
104.4
104.79
104.77
105.13
105.26
104.96
104.75
105.01
105.15
105.2
105.77
105.78
106.26
106.13
106.12
106.57
106.44
106.54
107.1
108.1
108.4
108.84
109.62
110.42
110.67
111.66
112.28
112.87
112.18
112.36
112.16
111.49
111.25
111.36
111.74
111.1
111.33
111.25
111.04
110.97
111.31
111.02
Dataseries Y:
100.64
100.63
100.43
100.8
101.33
101.88
101.85
102.04
102.22
102.63
102.65
102.54
102.37
102.68
102.76
102.82
103.31
103.23
103.6
103.95
103.93
104.25
104.38
104.36
104.32
104.58
104.68
104.92
105.46
105.23
105.58
105.34
105.28
105.7
105.67
105.71
106.19
106.93
107.44
107.85
108.71
109.32
109.49
110.2
110.62
111.22
110.88
111.15
111.29
111.09
111.24
111.45
111.75
111.07
111.17
110.96
110.5
110.48
110.66
110.46




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time2 seconds
R Server'RServer@AstonUniversity' @ vre.aston.ac.uk

\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 & 'RServer@AstonUniversity' @ vre.aston.ac.uk \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=55710&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]'RServer@AstonUniversity' @ vre.aston.ac.uk[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=55710&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=55710&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'RServer@AstonUniversity' @ vre.aston.ac.uk



Parameters (Session):
par1 = grey ; par2 = grey ; par3 = TRUE ; par4 = Female ; par5 = Male ;
Parameters (R input):
par1 = grey ; par2 = grey ; par3 = TRUE ; par4 = Female ; par5 = Male ;
R code (references can be found in the software module):
if (par3 == 'TRUE') par3 <- TRUE
if (par3 == 'FALSE') par3 <- FALSE
library(Hmisc)
z <- data.frame(cbind(x,y))
names(z) <- list(par4,par5)
bitmap(file='plot.png')
out <- histbackback(z, probability=par3, main = main, ylab = ylab)
barplot(-out$left, col=par1, horiz=TRUE, space=0, add=TRUE, axes=FALSE)
barplot(out$right, col=par2, horiz=TRUE, space=0, add=TRUE, axes=FALSE)
dev.off()