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 computationTue, 16 Oct 2012 07:46:36 -0400
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2012/Oct/16/t13503880073siwrmrpiajsj7z.htm/, Retrieved Tue, 30 Apr 2024 17:26:17 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=178616, Retrieved Tue, 30 Apr 2024 17:26:17 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact94
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-     [Univariate Data Series] [Question4] [2012-10-16 11:24:46] [3ba5358ad212dca7c498c7fc6d6ebde5]
- RMPD  [Notched Boxplots] [] [2012-10-16 11:34:25] [3ba5358ad212dca7c498c7fc6d6ebde5]
- RMPD      [Back to Back Histogram] [Question 4] [2012-10-16 11:46:36] [90f4fc95bc23bd40c615363dd079f863] [Current]
Feedback Forum

Post a new message
Dataseries X:
127
108
110

104
140

115
121
112


105
111
151

100


115

124
69

113
123
123
84

121

119
98



109


129
119
119
122


82


114

100
99
132
82

107
114
110


109
106
124

91



128
98
133


124
142
96
93




92

117


130
87
92
114
81

115
123
115
117

103


113

117
133

103

117
113
127
126
119
97
105
140

112
113

92
98
122
100
84
142

137
105


104




98
120


123
90
119
105

135
101




114
122
132



114
103
115
108

105
Dataseries Y:

102


112



118
122



106

149
122

86


117




97

132


87
101
115

109
159




131
120

86
105

100




132



105
121



120

126
138
118



130
103




129
150
88
125



112
144





127




117

108
139

97


115

95








91


102






124


106
125

130
79
108
136


108
139




110


114
118
120
108



130
130
112




94




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'Sir Ronald Aylmer Fisher' @ fisher.wessa.net
R Framework error message
Warning: there are blank lines in the 'Data X' field.
Please, use NA for missing data - blank lines are simply
 deleted and are NOT treated as missing values.

\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 & 'Sir Ronald Aylmer Fisher' @ fisher.wessa.net \tabularnewline
R Framework error message & 
Warning: there are blank lines in the 'Data X' field.
Please, use NA for missing data - blank lines are simply
 deleted and are NOT treated as missing values.
\tabularnewline \hline \end{tabular} %Source: https://freestatistics.org/blog/index.php?pk=178616&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]'Sir Ronald Aylmer Fisher' @ fisher.wessa.net[/C][/ROW]
[ROW][C]R Framework error message[/C][C]
Warning: there are blank lines in the 'Data X' field.
Please, use NA for missing data - blank lines are simply
 deleted and are NOT treated as missing values.
[/C][/ROW] [/TABLE] Source: https://freestatistics.org/blog/index.php?pk=178616&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=178616&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'Sir Ronald Aylmer Fisher' @ fisher.wessa.net
R Framework error message
Warning: there are blank lines in the 'Data X' field.
Please, use NA for missing data - blank lines are simply
 deleted and are NOT treated as missing values.



Parameters (Session):
par1 = red ; par2 = yellow ; par3 = TRUE ; par4 = Female ; par5 = Male ;
Parameters (R input):
par1 = red ; par2 = yellow ; par3 = TRUE ; par4 = Female ; par5 = Male ;
R code (references can be found in the software module):
par5 <- 'Male'
par4 <- 'Female'
par3 <- 'TRUE'
par2 <- 'grey'
par1 <- 'grey'
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()