print.measurement.error | R Documentation |
Print/Summary Function for RRPP
## S3 method for class 'measurement.error'
print(x, ...)
x |
Object from |
... |
Other arguments passed onto measurement.error |
Michael Collyer
## Not run:
# Measurement error analysis on simulated data of fish shapes
data(fishy)
# Analysis unconcerned with groups
ME1 <- measurement.error(
Y = "coords",
subjects = "subj",
replicates = "reps",
data = fishy)
anova(ME1)
ICCstats(ME1, subjects = "Subjects", with_in = "Systematic ME")
plot(ME1)
# Analysis concerned with groups
ME2 <- measurement.error(
Y = "coords",
subjects = "subj",
replicates = "reps",
groups = "groups",
data = fishy)
anova(ME2)
ICCstats(ME2, subjects = "Subjects",
with_in = "Systematic ME", groups = "groups")
P <- plot(ME2)
focusMEonSubjects(P, subjects = 18:20, shadow = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.