Home » date » 2009 » Dec » 14 »

scatter plot

*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: Mon, 14 Dec 2009 07:31:58 -0700
 
Cite this page as follows:
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL http://www.freestatistics.org/blog/date/2009/Dec/14/t126080114669497wcuv0cylns.htm/, Retrieved Mon, 14 Dec 2009 15:32:28 +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/Dec/14/t126080114669497wcuv0cylns.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 «
100 97.56592292 93.71196755 92.69776876 89.65517241 89.04665314 98.98580122 105.6795132 101.6227181 98.37728195 94.11764706 93.30628803 94.72616633 93.30628803 90.87221095 89.85801217 88.43813387 87.42393509 98.17444219 103.4482759 104.0567951 102.0283976 95.53752535 95.53752535 96.55172414 96.34888438 95.3346856 93.50912779 92.29208925 92.49492901 104.8681542 106.4908722 106.0851927 105.2738337 103.2454361 103.8539554 105.2738337 104.8681542 103.4482759 103.2454361 101.6227181 102.8397566 115.4158215 117.6470588 117.2413793 114.6044625 110.9533469 112.5760649 113.9959432 113.7931034 112.5760649 110.3448276 108.9249493 110.1419878 120.4868154 123.9350913 124.3407708 123.9350913 120.4868154 120.6896552 119.8782961 119.4726166 118.4584178 116.2271805 115.010142 115.4158215 125.9634888 127.5862069 127.3833671 124.137931 120.6896552 121.0953347 120.2839757 119.6754564 117.6470588 116.4300203 116.2271805 116.2271805 125.7606491 126.9776 etc...
 
Dataseries Y:
» Textbox « » Textfile « » CSV «
100 112.0967742 128.2258065 107.2580645 125.8064516 114.516129 109.6774194 98.38709677 128.2258065 133.0645161 127.4193548 116.1290323 120.9677419 120.1612903 135.483871 115.3225806 125 125.8064516 117.7419355 100.8064516 119.3548387 128.2258065 119.3548387 104.0322581 115.3225806 114.516129 128.2258065 123.3870968 125 121.7741935 120.9677419 97.58064516 127.4193548 136.2903226 113.7096774 110.483871 119.3548387 118.5483871 129.0322581 124.1935484 120.9677419 125 121.7741935 94.35483871 131.4516129 134.6774194 120.9677419 120.1612903 117.7419355 123.3870968 144.3548387 132.2580645 124.1935484 144.3548387 128.2258065 112.0967742 143.5483871 144.3548387 140.3225806 134.6774194 129.0322581 133.8709677 154.0322581 143.5483871 138.7096774 150 131.4516129 121.7741935 154.8387097 142.7419355 154.0322581 145.1612903 141.1290323 143.5483871 170.1612903 138.7096774 156.4516129 159.6774194 141.9354839 130.6451613 157.2580645 160.483871 161 etc...
 
Output produced by software:


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


Kendall tau Rank Correlation
Kendall tau0.187969446182251
2-sided p-value0.00423204898834229
Score1078
Var(Score)141775.59375
Denominator5734.974609375
 
Charts produced by software:
http://www.freestatistics.org/blog/date/2009/Dec/14/t126080114669497wcuv0cylns/1ki6d1260801117.png (open in new window)
http://www.freestatistics.org/blog/date/2009/Dec/14/t126080114669497wcuv0cylns/1ki6d1260801117.ps (open in new window)


http://www.freestatistics.org/blog/date/2009/Dec/14/t126080114669497wcuv0cylns/2liey1260801117.png (open in new window)
http://www.freestatistics.org/blog/date/2009/Dec/14/t126080114669497wcuv0cylns/2liey1260801117.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