R version 2.6.0 (2007-10-03) Copyright (C) 2007 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > z <- c(80,60,10,20,30) > y <- c(39.191,31.994,35.735,38.930,33.658,23.849,58.972,59.249,63.955,53.785,52.760,44.795,37.348,32.370,32.717,40.974,33.591,21.124,58.608,46.865,51.378,46.235,47.206,45.382,41.227,33.795,31.295,42.625,33.625,21.538,56.421,53.152,53.536,52.408,41.454,38.271,35.306,26.414,31.917,38.030,27.534,18.387,50.556,43.901,48.572,43.899,37.532,40.357,35.489,29.027,34.485,42.598,30.306,26.451,47.460,50.104,61.465,53.726,39.477,43.895,31.481,29.896,33.842,39.120,33.702,25.094,51.442,45.594,52.518,48.564,41.745,49.585,32.747,33.379,35.645,37.034,35.681,20.972,58.552,54.955,65.540,51.570,51.145,46.641,35.704,33.253,35.193,41.668,34.865,21.210,56.126,49.231,59.723,48.103,47.472,50.497,40.059,34.149,36.860) > x <- c(27.336,22.916,24.537,26.128,22.602,15.744,41.086,39.690,43.129,37.863,35.953,29.133,24.693,22.205,21.725,27.192,21.790,13.253,37.702,30.364,32.609,30.212,29.965,28.352,25.814,22.414,20.506,28.806,22.228,13.971,36.845,35.338,35.022,34.777,26.887,23.970,22.780,17.351,21.382,24.561,17.409,11.514,31.514,27.071,29.462,26.105,22.397,23.843,21.705,18.089,20.764,25.316,17.704,15.548,28.029,29.383,36.438,32.034,22.679,24.319,18.004,17.537,20.366,22.782,19.169,13.807,29.743,25.591,29.096,26.482,22.405,27.044,17.970,18.730,19.684,19.785,18.479,10.698,31.956,29.506,34.506,27.165,26.736,23.691,18.157,17.328,18.205,20.995,17.382,9.367,31.124,26.551,30.651,25.859,25.100,25.778,20.418,18.688,20.424) > #'GNU S' R Code compiled by R2WASP v. 1.0.44 () > #Author: Prof. Dr. P. Wessa > #To cite this work: Wessa P., (2007), Partial Correlation (v1.0.3) in Free Statistics Software (v$_version), Office for Research Development and Education, URL http://www.wessa.net/rwasp_partialcorrelation.wasp/ > #Source of accompanying publication: Office for Research, Development, and Education > #Technical description: Write here your technical program description (don't use hard returns!) > (rho12 <- cor(x, y)) [1] 0.9278342 > (rho23 <- cor(y, z)) Error in cor(y, z) : incompatible dimensions Execution halted