### R code from vignette source 'Correlation.Rnw'
###################################################
### code chunk number 1: Correlation.Rnw:31-40
###################################################
# Load the smwrQW package
library(smwrQW)
# And the psych package, required for the phi function
library(psych)
# And the data
data(Atra, package="NADA")
# Convert the data
Atra <- with(Atra, data.frame(June=as.lcens(June, censor.codes=JuneCen),
Sept=as.lcens(Sept, censor.codes=SeptCen)))
###################################################
### code chunk number 2: Correlation.Rnw:50-57
###################################################
# Create data frame of 0/1 data for June and September
Atra.01 <- with(Atra, code01(June, Sept))
# Tabulate the 0/1 data and print it
Atra.tbl <- table(Atra.01)
print(Atra.tbl)
# And compute the phi coefficient
phi(Atra.tbl, digits=4)
###################################################
### code chunk number 3: Correlation.Rnw:68-72
###################################################
setSweave("graph01", 6 ,6)
# Create the graph
with(Atra, xyPlot(June, Sept, yaxis.log=TRUE, xaxis.log=TRUE))
graphics.off()
###################################################
### code chunk number 4: Correlation.Rnw:82-84
###################################################
# The Pearson correlation:
with(Atra, censCor(log(June), log(Sept)))
###################################################
### code chunk number 5: Correlation.Rnw:92-98
###################################################
# The Spearman correlation:
# Step 1: U code the data, and print part
AtraU <- with(Atra, codeU(June, Sept))
head(AtraU)
# Compute rho and the test
with(AtraU, cor.test(June, Sept, method='spearman'))
###################################################
### code chunk number 6: Correlation.Rnw:103-105
###################################################
# Compute tau and the test
with(Atra, kendallATS.test(June, Sept))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.