Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data X:
106.7 110.2 125.9 100.1 106.4 114.8 81.3 87 104.2 108 105 94.5 92 95.9 108.8 103.4 102.1 110.1 83.2 82.7 106.8 113.7 102.5 96.6 92.1 95.6 102.3 98.6 98.2 104.5 84 73.8 103.9 106 97.2 102.6 89 93.8 116.7 106.8 98.5 118.7 90 91.9 113.3 113.1 104.1 108.7 96.7 101 116.9 105.8 99 129.4 83 88.9 115.9 104.2 113.4 112.2 100.8 107.3 126.6 102.9 117.9 128.8 87.5 93.8 122.7 126.2 124.6 116.7 115.2 111.1 129.9 113.3 118.5 133.5 102.1 102.4
Data Y:
97.3 101 113.2 101 105.7 113.9 86.4 96.5 103.3 114.9 105.8 94.2 98.4 99.4 108.8 112.6 104.4 112.2 81.1 97.1 112.6 113.8 107.8 103.2 103.3 101.2 107.7 110.4 101.9 115.9 89.9 88.6 117.2 123.9 100 103.6 94.1 98.7 119.5 112.7 104.4 124.7 89.1 97 121.6 118.8 114 111.5 97.2 102.5 113.4 109.8 104.9 126.1 80 96.8 117.2 112.3 117.3 111.1 102.2 104.3 122.9 107.6 121.3 131.5 89 104.4 128.9 135.9 133.3 121.3 120.5 120.4 137.9 126.1 133.2 146.6 103.4 117.2
Data Z:
93.5 94.7 112.9 99.2 105.6 113 83.1 81.1 96.9 104.3 97.7 102.6 89.9 96 112.7 107.1 106.2 121 101.2 83.2 105.1 113.3 99.1 100.3 93.5 98.8 106.2 98.3 102.1 117.1 101.5 80.5 105.9 109.5 97.2 114.5 93.5 100.9 121.1 116.5 109.3 118.1 108.3 105.4 116.2 111.2 105.8 122.7 99.5 107.9 124.6 115 110.3 132.7 99.7 96.5 118.7 112.9 130.5 137.9 115 116.8 140.9 120.7 134.2 147.3 112.4 107.1 128.4 137.7 135 151 137.4 132.4 161.3 139.8 146 154.6 142.1 120.5
R Code
(rho12 <- cor(x, y)) (rho23 <- cor(y, z)) (rho13 <- cor(x, z)) (rhoxy_z <- (rho12-(rho13*rho23))/(sqrt(1-(rho13*rho13)) * sqrt(1-(rho23*rho23)))) (rhoxz_y <- (rho13-(rho12*rho23))/(sqrt(1-(rho12*rho12)) * sqrt(1-(rho23*rho23)))) (rhoyz_x <- (rho23-(rho12*rho13))/(sqrt(1-(rho12*rho12)) * sqrt(1-(rho13*rho13)))) load(file='createtable') a<-table.start() a<-table.row.start(a) a<-table.element(a,'Pearson Product Moment Partial Correlation - Ungrouped Data',2,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Statistic',1,TRUE) a<-table.element(a,'Value',1,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Correlation r(xy)',header=TRUE) a<-table.element(a,rho12) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,hyperlink('http://www.xycoon.com/partial_correlation1.htm','Partial Correlation r(xy.z)',''),header=TRUE) a<-table.element(a,rhoxy_z) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Correlation r(xz)',header=TRUE) a<-table.element(a,rho13) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,hyperlink('http://www.xycoon.com/partial_correlation1.htm','Partial Correlation r(xz.y)',''),header=TRUE) a<-table.element(a,rhoxz_y) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Correlation r(yz)',header=TRUE) a<-table.element(a,rho23) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,hyperlink('http://www.xycoon.com/partial_correlation1.htm','Partial Correlation r(yz.x)',''),header=TRUE) a<-table.element(a,rhoyz_x) 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
0 seconds
R Server
Big Analytics Cloud Computing Center
Click here to blog (archive) this computation