Free Statistics

of Irreproducible Research!

Author's title

Author*The author of this computation has been verified*
R Software Modulerwasp_somersd.wasp
Title produced by softwareSomers Dxy Rank Correlation
Date of computationThu, 01 Apr 2010 19:04:33 +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/2010/Apr/01/t1270148684ic5zm4uj7x4e4eq.htm/, Retrieved Fri, 26 Apr 2024 09:27:26 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=74587, Retrieved Fri, 26 Apr 2024 09:27:26 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact345
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Somers Dxy Rank Correlation] [] [2010-04-01 19:04:33] [d76b387543b13b5e3afd8ff9e5fdc89f] [Current]
Feedback Forum

Post a new message
Dataseries X:
80
60
10
20
30
Dataseries Y:
1
0
0
1
1




Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time1 seconds
R Server'Gwilym Jenkins' @ 72.249.127.135

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

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







Somers Dxy Rank Correlation
StatisticsValue
C0.666666666666667
Dxy0.333333333333333
n5
Missing0

\begin{tabular}{lllllllll}
\hline
Somers Dxy Rank Correlation \tabularnewline
Statistics & Value \tabularnewline
C & 0.666666666666667 \tabularnewline
Dxy & 0.333333333333333 \tabularnewline
n & 5 \tabularnewline
Missing & 0 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=74587&T=1

[TABLE]
[ROW][C]Somers Dxy Rank Correlation[/C][/ROW]
[ROW][C]Statistics[/C][C]Value[/C][/ROW]
[ROW][C]C[/C][C]0.666666666666667[/C][/ROW]
[ROW][C]Dxy[/C][C]0.333333333333333[/C][/ROW]
[ROW][C]n[/C][C]5[/C][/ROW]
[ROW][C]Missing[/C][C]0[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=74587&T=1

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

As an alternative you can also use a QR Code:  

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

Somers Dxy Rank Correlation
StatisticsValue
C0.666666666666667
Dxy0.333333333333333
n5
Missing0



Parameters (Session):
Parameters (R input):
R code (references can be found in the software module):
library(Hmisc)
r <- somers2(x,y)
r
load(file='createtable')
a<-table.start()
a<-table.row.start(a)
a<-table.element(a,'Somers Dxy Rank Correlation',2,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'Statistics',header=TRUE)
a<-table.element(a,'Value',header=TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'C',header=TRUE)
a<-table.element(a,r['C'])
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'Dxy',header=TRUE)
a<-table.element(a,r['Dxy'])
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'n',header=TRUE)
a<-table.element(a,r['n'])
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'Missing',header=TRUE)
a<-table.element(a,r['Missing'])
a<-table.row.end(a)
a<-table.end(a)
table.save(a,file='mytable.tab')