Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_spearman.wasp
Title produced by softwareSpearman Rank Correlation
Date of computationTue, 26 Jan 2016 17:30:53 +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/2016/Jan/26/t1453829510jp2jsi3uxo7h79n.htm/, Retrieved Sun, 28 Apr 2024 23:31:57 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=291808, Retrieved Sun, 28 Apr 2024 23:31:57 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact165
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Spearman Rank Correlation] [VWC CH4] [2016-01-26 17:30:53] [d41d8cd98f00b204e9800998ecf8427e] [Current]
Feedback Forum

Post a new message
Dataseries X:
0.310084596
0.278403759
0.488085568
0.524136573
0.413733736
0.4681831
0.476715297
0.488284498
0.473341212
0.485132292
0.354395181
0.472117215
0.313855946
0.463167042
0.35890907
0.455290318
0.344383836
0.461334035
0.48928383
0.50146836
0.480779797
0.498951763
0.483351648
0.490403205
Dataseries Y:
-0.00362546
-0.081538157
0.02321837
-0.007356826
0.034326162
-0.018621966
-0.049985063
-0.020844341
0.003152273
0.009700787
-0.017549096
0.030149978
0.086366074
-0.673017327
0.10498804
-0.1117681
0.028627252
-0.055901968
-1.084365526
1.90499258
-0.08324419
0.03202561
0.228846121
0.431890398




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=291808&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=291808&T=0

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







Spearman Rank Correlation
rho0.145217391304348
2-sided p-value0.496703120990516
S1966

\begin{tabular}{lllllllll}
\hline
Spearman Rank Correlation \tabularnewline
rho & 0.145217391304348 \tabularnewline
2-sided p-value & 0.496703120990516 \tabularnewline
S & 1966 \tabularnewline
\hline
\end{tabular}
%Source: https://freestatistics.org/blog/index.php?pk=291808&T=1

[TABLE]
[ROW][C]Spearman Rank Correlation[/C][/ROW]
[ROW][C]rho[/C][C]0.145217391304348[/C][/ROW]
[ROW][C]2-sided p-value[/C][C]0.496703120990516[/C][/ROW]
[ROW][C]S[/C][C]1966[/C][/ROW]
[/TABLE]
Source: https://freestatistics.org/blog/index.php?pk=291808&T=1

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

As an alternative you can also use a QR Code:  

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

Spearman Rank Correlation
rho0.145217391304348
2-sided p-value0.496703120990516
S1966



Parameters (Session):
Parameters (R input):
R code (references can be found in the software module):
k <- cor.test(x,y,method='spearman')
bitmap(file='test1.png')
plot(x,y,main='Scatterplot',xlab=xlab,ylab=ylab)
grid()
dev.off()
bitmap(file='test2.png')
plot(rank(x),rank(y),main='Scatterplot of Ranks',xlab=xlab,ylab=ylab)
grid()
dev.off()
load(file='createtable')
a<-table.start()
a<-table.row.start(a)
a<-table.element(a,'Spearman Rank Correlation',2,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'rho',header=TRUE)
a<-table.element(a,k$estimate)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'2-sided p-value',header=TRUE)
a<-table.element(a,k$p.value)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'S',header=TRUE)
a<-table.element(a,k$statistic)
a<-table.row.end(a)
a<-table.end(a)
table.save(a,file='mytable.tab')