print.rpt: Print a rpt object

Description Usage Arguments Author(s) References See Also Examples

Description

Displays the results a rpt object (i.e. the result of a rpt function call) an a nice form.

Usage

1
2
	## S3 method for class 'rpt'
print(x, ...)

Arguments

x

An rpt object returned from one of the rpt functions

...

Additional arguments; none are used in this method.

Author(s)

Holger Schielzeth (holger.schielzeth@ebc.uu.se) & Shinichi Nakagawa (shinichi.nakagawa@otago.ac.nz)

References

Nakagawa, S. and Schielzeth, H. (2011) Repeatability for Gaussian and non-Gaussian data: a practical guide for biologists. Biological Reviews 85: 935-956.

See Also

rpt, rpt.corr, rpt.aov, rpt.remlLMM, rpt.mcmcLMM, rpt.binomGLMM.add, rpt.binomGLMM.multi, rpt.poisGLMM.add, rpt.poisGLMM.multi

Examples

1
2
3
4
5
6
# repeatability estimation for weight (body mass)
data(BodySize)
attach(BodySize)
print.rpt(rpt.Weight <- rpt.mcmcLMM(Weight, BirdID))
print(rpt.Weight)  # alternative call to print.rpt() through pring()
detach(BodySize)

rptR documentation built on May 2, 2019, 5:01 p.m.

Related to print.rpt in rptR...