diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-11-18 16:28:49 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-11-18 16:28:49 +0100 |
commit | e7b2d16306b7d03cde66223c9b27abde928f9447 (patch) | |
tree | 85d650cfb8e071b00a1228566ec788dc1b477809 /man/print.mkinmod.Rd | |
parent | 8bdb67360502bd1a8eb5317d287b094510b4a02c (diff) |
Improve examples for showing with pkgdown
- Use quiet= TRUE in dontrun sections
- Use mkinsub in model definitions
- Avoid \code{\link{}} in titles
Diffstat (limited to 'man/print.mkinmod.Rd')
-rw-r--r-- | man/print.mkinmod.Rd | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/man/print.mkinmod.Rd b/man/print.mkinmod.Rd index fa02c1cb..24555def 100644 --- a/man/print.mkinmod.Rd +++ b/man/print.mkinmod.Rd @@ -7,7 +7,7 @@ Print mkinmod objects in a way that the user finds his way to get to its components. } \usage{ -\method{print}{mkinmod}(x, ...) + \method{print}{mkinmod}(x, ...) } \arguments{ \item{x}{ @@ -17,3 +17,10 @@ Not used. } } +\examples{ + m_synth_SFO_lin <- mkinmod(parent = list(type = "SFO", to = "M1"), + M1 = list(type = "SFO", to = "M2"), + M2 = list(type = "SFO"), use_of_ff = "max") + + print(m_synth_SFO_lin) +} |