~~ Methods for Function plot ~~

data(HorseBeginners)
pd1<-with(HorseBeginners,paired(Actual,Imaginary))
plot(pd1)

plot of chunk plot

plot(pd1,type="BA")

plot of chunk plot

plot(pd1,type="McNeil")

plot of chunk plot

plot(pd1,type="profile")

plot of chunk plot

data(Shoulder)
with(Shoulder,plot(paired(Left,Right),groups=Group))

plot of chunk plot

with(Shoulder,plot(paired(Left,Right),groups=Group,facet=FALSE))

plot of chunk plot

with(Shoulder,plot(paired(Left,Right),
groups=Group,facet=FALSE,type="profile"))+theme_bw()

plot of chunk plot