| print.Knowledge | R Documentation |
Print a Knowledge Object
## S3 method for class 'Knowledge'
print(x, compact = FALSE, wide_vars = FALSE, ...)
x |
A |
compact |
Logical. If |
wide_vars |
Logical. If |
... |
Additional arguments (not used). |
Invisibly returns the Knowledge object.
kn <- knowledge(
tpc_example,
tier(
child ~ starts_with("child"),
youth ~ starts_with("youth"),
old ~ starts_with("old")
)
)
print(kn)
print(kn, wide_vars = TRUE)
print(kn, compact = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.