Typographic Conventions
Throughout this GitBook, we (try to) use a consistent set of typographic conventions:
- Functions are typeset in a code font, and the name of the function is always
followed by parentheses
- E.g.,
sum()
,mean()
- E.g.,
- Other R objects (e.g., data objects, function arguments) are in also typeset
in a code font but without parentheses
- E.g.,
seTE
,method.tau
- E.g.,
- Sometimes, we’ll use the package name followed by two colons (
::
, the so-called *scope-resolution operator), likelavaan::sem()
. This command is valid R code and will run if you copy it into your R console. Thelavaan::
part of the command tells R that we want to use thesem()
from thelavaan
package.