| R Documentation |
Display IssueTB and IssuesTB with formatted output in the console
## S3 method for class 'IssueTB'
print(x, ...)
## S3 method for class 'IssuesTB'
print(x, ...)
## S3 method for class 'summary.IssueTB'
print(x, ...)
## S3 method for class 'summary.IssuesTB'
print(x, ...)
## S3 method for class 'LabelsTB'
print(x, ...)
## S3 method for class 'summary.LabelsTB'
print(x, ...)
x |
a |
... |
Unused argument |
This function displays an issue (IssueTB object) or a list of issues
(IssuesTB object) with a formatted output.
invisibly (with invisible()) NULL.
all_issues <- get_issues(
source = "local",
dataset_dir = system.file("data_issues", package = "IssueTrackeR"),
dataset_name = "open_issues.yaml"
)
# Display one issue
print(all_issues[1, ])
# Display several issues
print(all_issues[1:10, ])
# Display the summary of one issue
summary(all_issues[2, ])
# Display the summary of
summary(all_issues[1:10, ])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.