Description Usage Arguments Details Examples
Print method for freqMAP objects.
1 2 |
x |
An object of class |
... |
Not used at this time. |
print
prints the result of summary(x)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #Make two sets of 2-category frequency data, y1 & y2, which both vary as
#a function of a continuous variable x
x <- runif(2000,min=-2,max=2)
y1 <- c("a","b")[1+rbinom(n=length(x),size=rep(1,length(x)),prob=pnorm(x/2))]
y2 <- c("a","b")[1+rbinom(n=length(x),size=rep(1,length(x)),prob=pnorm(x/5))]
#Create the frequency MAP objects for y1 and y2
fp1 <- freqMAP(data.frame(x=x,y=y1,stringsAsFactors=FALSE),
x=seq(-2,2,by=.2),x.label="x",hw=.2)
fp2 <- freqMAP(data.frame(x=x,y=y2,stringsAsFactors=FALSE),
x=seq(-2,2,by=.2),x.label="x",hw=.2)
#Examine the frequency MAP objects
summary(fp1)
print(fp2)
#Three example plots
plot(fp1,ylim=matrix(c(0,1),nrow=2,ncol=2,byrow=TRUE))
plot(fp1,fp2,type="freq",legend=c("y1","y2"),show.p.value.legend=TRUE)
plot(fp1,fp2,type="or")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.