Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data X:
4.6 5.6 4 5 4.4 6 4 4.4 4.6 4 4.8 5.333333333 4.4 5.2 5.2 4 5.2 4.8 4 4.4 5.6 6 4.8 4.2 4 2.8 4.8 4.2 4.8 5.2 4.6 4.4 4 3.6 4.6 4 2.2 4 5.6 3.6 4 5.4 5 4.4 4.6 3.8 4.25 4.6 5.2 4 4.2 4.2 4.6 5.6 5.4 4 3.6 4.4 4.6 4.4 4 5 4.8 4 4.6 4 5 4.2 4.8 6.8 4 4.2 5 5 4.6 4.8 5 4.2 4 4 3.8 4.6 4 4.2 5.6 4 5.6 3.8 5 5.4 5 4.4 4.4 4 5.4 2.2
Data Y:
4.6 4 4.8 4 5 5 4 4 4.4 4 4 5 3.8 4.6 4 4.6 4.666666667 4 4 4.4 4.8 5.8 4.6 4.75 5 2.75 4 3.8 4.4 4.8 4.25 4.4 4 4.5 5 3.5 2 4.4 4.4 4.25 3.25 4.2 4.75 4.4 4 4.2 5 4.6 4.4 4 4.4 4.5 5.2 4.4 3.25 4.6 3.75 5 3.8 4 5.4 5 5 4.2 4.4 4 4.6 4.2 5.2 6.4 4 4 5 4 4.2 4 4 4 4 4 4.2 4 4 4 5.2 4.2 4.8 4 4.8 5 4.6 4 4.4 4 3.8 4.5
Correlation Test Method
pearson
pearson
kendall
spearman
Form of Alternative H1
two.sided
two.sided
less
greater
Chart options
Label y-axis:
Label x-axis:
R Code
bitmap(file='test1.png') plot(x,y, xlab=xlab, ylab=ylab) abline(coef=(lm(y ~ x))$coeff, col='red') ctp<-cor.test(x, y, use='pair', method='pearson') legend('bottomright', c('cor =', as.character(round(ctp$estimate, digits=4)))) dev.off() (sw1<-shapiro.test(x)) (sw2<-shapiro.test(y)) (cxy<-cor.test(x, y, method=par1)) load(file='createtable') a<-table.start() a<-table.row.start(a) a<-table.element(a,paste('Shapiro Test (', xlab,')',sep=''),3,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Statistic W',header=TRUE) a<-table.element(a,'Probability',header=TRUE) a<-table.element(a,'Link',header=TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,round(sw1$statistic, digits=4)) a<-table.element(a,round(sw1$p.value, digits=4)) a<-table.element(a,hyperlink('http://en.wikipedia.org/wiki/Shapiro%E2%80%93Wilk_test','Shapiro-Wilk Test','Shapiro-Wilk Test')) a<-table.row.end(a) a<-table.end(a) table.save(a,file='mytable.tab') a<-table.start() a<-table.row.start(a) a<-table.element(a, paste('Shapiro Test (', ylab,')',sep=''),3,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Statistic W',header=TRUE) a<-table.element(a,'probability',header=TRUE) a<-table.element(a,'Link',header=TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,round(sw2$statistic, digits=4)) a<-table.element(a,round(sw2$p.value, digits=4)) a<-table.element(a,hyperlink('http://en.wikipedia.org/wiki/Shapiro%E2%80%93Wilk_test','Shapiro-Wilk Test','Shapiro-Wilk Test')) a<-table.row.end(a) a<-table.end(a) table.save(a,file='mytable1.tab') a<-table.start() a<-table.row.start(a) a<-table.element(a,'Correlation Test X-Y',5,TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,'Statistic',header=TRUE) a<-table.element(a,'Value',header=TRUE) a<-table.element(a,'probability',header=TRUE) a<-table.element(a,'Method',header=TRUE) a<-table.element(a,'alternative',header=TRUE) a<-table.row.end(a) a<-table.row.start(a) a<-table.element(a,names(cxy$estimate)) a<-table.element(a,round(cxy$estimate, digits=4)) a<-table.element(a,round(cxy$p.value, digits=4)) a<-table.element(a,cxy$method) a<-table.element(a,cxy$alternative) a<-table.row.end(a) a<-table.end(a) table.save(a,file='mytable2.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