Description Usage Arguments Value Examples
Plot an object of class paired.
1 2 3 4 |
x |
a paired object created by the
|
groups |
a factor (optional). |
subjects |
subjects name. |
facet |
faceting or grouping strategy for plotting? |
type |
type of the plot (correlation, Bland-Altman, McNeil or profile plot). |
... |
arguments to be passed to methods. |
an graphical object of class ggplot.
1 2 3 4 5 6 7 8 9 10 11 12 | data(HorseBeginners)
pd1<-with(HorseBeginners,paired(Actual,Imaginary))
plot(pd1)
plot(pd1,type="BA")
plot(pd1,type="McNeil")
plot(pd1,type="profile")
data(Shoulder)
with(Shoulder,plot(paired(Left,Right),groups=Group))
with(Shoulder,plot(paired(Left,Right),groups=Group,facet=FALSE))
with(Shoulder,plot(paired(Left,Right),
groups=Group,facet=FALSE,type="profile"))+theme_bw()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.