Home » date » 2009 » Oct » 27 »

ws4 kendall ln

*The author of this computation has been verified*
R Software Module: rwasp_kendall.wasp (opens new window with default values)
Title produced by software: Kendall tau Rank Correlation
Date of computation: Tue, 27 Oct 2009 13:06:11 -0600
 
Cite this page as follows:
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL http://www.freestatistics.org/blog/date/2009/Oct/27/t1256670454tae5xx7j729hl78.htm/, Retrieved Tue, 27 Oct 2009 20:07:36 +0100
 
BibTeX entries for LaTeX users:
@Manual{KEY,
    author = {{YOUR NAME}},
    publisher = {Office for Research Development and Education},
    title = {Statistical Computations at FreeStatistics.org, URL http://www.freestatistics.org/blog/date/2009/Oct/27/t1256670454tae5xx7j729hl78.htm/},
    year = {2009},
}
@Manual{R,
    title = {R: A Language and Environment for Statistical Computing},
    author = {{R Development Core Team}},
    organization = {R Foundation for Statistical Computing},
    address = {Vienna, Austria},
    year = {2009},
    note = {{ISBN} 3-900051-07-0},
    url = {http://www.R-project.org},
}
 
Original text written by user:
 
IsPrivate?
No (this computation is public)
 
User-defined keywords:
 
Dataseries X:
» Textbox « » Textfile « » CSV «
12.56147528 12.56584977 12.55335058 12.53064218 12.53507059 12.53223477 12.53214456 12.52466091 12.50673264 12.49552814 12.48745869 12.56813953 12.58171752 12.58553595 12.57136138 12.54780602 12.55198589 12.54322322 12.54400096 12.53118055 12.52531152 12.52216723 12.51102104 12.57695321 12.58013652 12.58553595 12.53719488 12.50553259 12.49072889 12.50259304 12.48437083 12.44979499 12.44253905 12.4133185 12.36892252 12.46286758 12.47224887 12.44769638 12.43178489 12.40255184 12.41756863 12.4233631 12.40917266 12.37615292 12.37617401 12.32631488 12.33199579 12.42091786 12.42252587 12.4170181 12.40941341 12.41415535 12.45201433 12.48491199 12.5000362 12.51739556 12.52074834 12.49661313 12.51353161 12.58693764 12.59771263 12.58894785
 
Dataseries Y:
» Textbox « » Textfile « » CSV «
12.69284735 12.6946864 12.70162827 12.6681701 12.66835592 12.65631033 12.65164269 12.64236113 12.62132305 12.61259053 12.62489811 12.71732618 12.72990728 12.72466404 12.68828581 12.65691575 12.65869166 12.65465471 12.64324312 12.62136596 12.60816206 12.60626722 12.64636099 12.70613556 12.72213354 12.69959747 12.6414816 12.59783091 12.58249678 12.58293936 12.559114 12.52987568 12.51563607 12.4874134 12.48101137 12.60083401 12.62345974 12.56721659 12.52970205 12.4928443 12.49557681 12.50016289 12.47809017 12.45114206 12.44176908 12.4041158 12.43217581 12.54413291 12.56114581 12.50978554 12.47256683 12.45138074 12.46988202 12.48333689 12.48480605 12.48095819 12.47828061 12.45358485 12.48454115 12.59085874 12.6139116 12.56801768
 
Output produced by software:


Summary of computational transaction
Raw Inputview raw input (R code)
Raw Outputview raw output of R engine
Computing time2 seconds
R Server'George Udny Yule' @ 72.249.76.132


Kendall tau Rank Correlation
Kendall tau0.65696907043457
2-sided p-value0
Score1242
Var(Score)27103.333984375
Denominator1890.49987792969
 
Charts produced by software:
http://www.freestatistics.org/blog/date/2009/Oct/27/t1256670454tae5xx7j729hl78/113em1256670368.png (open in new window)
http://www.freestatistics.org/blog/date/2009/Oct/27/t1256670454tae5xx7j729hl78/113em1256670368.ps (open in new window)


http://www.freestatistics.org/blog/date/2009/Oct/27/t1256670454tae5xx7j729hl78/2x9f61256670368.png (open in new window)
http://www.freestatistics.org/blog/date/2009/Oct/27/t1256670454tae5xx7j729hl78/2x9f61256670368.ps (open in new window)


 
Parameters (Session):
 
Parameters (R input):
 
R code (references can be found in the software module):
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')
 





Copyright

Creative Commons License

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License.

Software written by Ed van Stee & Patrick Wessa


Disclaimer

Information provided on this web site is provided "AS IS" without warranty of any kind, either express or implied, including, without limitation, warranties of merchantability, fitness for a particular purpose, and noninfringement. We use reasonable efforts to include accurate and timely information and periodically update the information, and software without notice. However, we make no warranties or representations as to the accuracy or completeness of such information (or software), and we assume no liability or responsibility for errors or omissions in the content of this web site, or any software bugs in online applications. Your use of this web site is AT YOUR OWN RISK. Under no circumstances and under no legal theory shall we be liable to you or any other person for any direct, indirect, special, incidental, exemplary, or consequential damages arising from your access to, or use of, this web site.


Privacy Policy

We may request personal information to be submitted to our servers in order to be able to:

  • personalize online software applications according to your needs
  • enforce strict security rules with respect to the data that you upload (e.g. statistical data)
  • manage user sessions of online applications
  • alert you about important changes or upgrades in resources or applications

We NEVER allow other companies to directly offer registered users information about their products and services. Banner references and hyperlinks of third parties NEVER contain any personal data of the visitor.

We do NOT sell, nor transmit by any means, personal information, nor statistical data series uploaded by you to third parties.

We carefully protect your data from loss, misuse, alteration, and destruction. However, at any time, and under any circumstance you are solely responsible for managing your passwords, and keeping them secret.

We store a unique ANONYMOUS USER ID in the form of a small 'Cookie' on your computer. This allows us to track your progress when using this website which is necessary to create state-dependent features. The cookie is used for NO OTHER PURPOSE. At any time you may opt to disallow cookies from this website - this will not affect other features of this website.

We examine cookies that are used by third-parties (banner and online ads) very closely: abuse from third-parties automatically results in termination of the advertising contract without refund. We have very good reason to believe that the cookies that are produced by third parties (banner ads) do NOT cause any privacy or security risk.

FreeStatistics.org is safe. There is no need to download any software to use the applications and services contained in this website. Hence, your system's security is not compromised by their use, and your personal data - other than data you submit in the account application form, and the user-agent information that is transmitted by your browser - is never transmitted to our servers.

As a general rule, we do not log on-line behavior of individuals (other than normal logging of webserver 'hits'). However, in cases of abuse, hacking, unauthorized access, Denial of Service attacks, illegal copying, hotlinking, non-compliance with international webstandards (such as robots.txt), or any other harmful behavior, our system engineers are empowered to log, track, identify, publish, and ban misbehaving individuals - even if this leads to ban entire blocks of IP addresses, or disclosing user's identity.


FreeStatistics.org is powered by