Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data X:
100.7 97.9 96.5 96.6 96.6 95.5 91.8 89.3 87 85.9 88 87.9 89.2 90.9 91.6 90.2 89.1 87.5 86.3 86 84.4 86.1 91 92.7 88 84.3 82.2 80.8 79.4 80.2 82.2 82.2 81.2 82.1 88.1 88.5 92.1 98.6 100.9 100.6 101.1 102.1 103.6 102.8 108.3 104 106.1 106.3 109 111 113.7 112.7 110.3 114.5 119.3 121.8 125.4 129.7 129.4 134.5 141.2 141.4 152.2 167.7 173.3 168.7 172.6 169.8 172 179.4 174.6 172.5 172.6 176.3 178.9 179.6 179.9 180.3 180.9 177.7
Data Y:
101.3 97.6 96.4 97 96.4 94.7 89.3 85.9 83.3 81.5 85 84.8 87.5 89 90 89.6 87.4 84.8 81.9 81.1 79.1 80.5 88.5 90.9 84.9 80 76.5 75.4 73.5 74.3 77.7 77.9 76.7 77.2 86 86.9 92 101.7 104.5 101.7 100.6 100.3 102.5 101 108.6 103.4 106.4 106.6 108.9 110.5 114 112.8 109.6 116 124.6 129 131.5 138.6 138.1 146.3 157.6 158.4 176.3 199.9 210.4 202.6 207.1 202 203.4 216.3 207.3 203.5 204.4 203.7 205.7 208 209.3 208.7 206.5 204.5
Sample Range:
(leave blank to include all observations)
From:
To:
Chart options
Label y-axis:
Label x-axis:
R Code
library('Kendall') k <- Kendall(x,y) bitmap(file='test1.png') par(bg=rgb(0.2,0.4,0.6)) plot(x,y,main='Scatterplot',xlab=xlab,ylab=ylab) grid() dev.off() bitmap(file='test2.png') par(bg=rgb(0.2,0.4,0.6)) 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,'Kendall tau Rank Correlation',2,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Kendall tau',header=TRUE) a<-table.element(a,k$tau) 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$sl) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Score',header=TRUE) a<-table.element(a,k$S) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Var(Score)',header=TRUE) a<-table.element(a,k$varS) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Denominator',header=TRUE) a<-table.element(a,k$D) a<-table.row.end(a) a<-table.end(a) table.save(a,file='mytable.tab')
Compute
Summary of computational transaction
Raw Input
view raw input (R code)
Raw Output
view raw output of R engine
Computing time
1 seconds
R Server
Big Analytics Cloud Computing Center
Click here to blog (archive) this computation