print.IssueTB {IssueTrackeR} | R Documentation |
Display IssueTB and IssuesTB object
Description
Display IssueTB and IssuesTB with formatted output in the console
Usage
## 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, ...)
Arguments
x |
a |
... |
Unused argument |
Details
This function displays an issue (IssueTB
object) or a list of issues
(IssuesTB
object) with a formatted output.
Value
invisibly (with invisible()
) NULL
.
Examples
all_issues <- get_issues(
source = "local",
dataset_dir = system.file("data_issues", package = "IssueTrackeR"),
dataset_name = "list_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, ])
[Package IssueTrackeR version 1.2.0 Index]