summary.IssueTB {IssueTrackeR} | R Documentation |
Compute a summary of an issue or a list of issues
Description
Compute a summary of an issue or a list of issues
Usage
## S3 method for class 'IssueTB'
summary(object, ...)
## S3 method for class 'IssuesTB'
summary(object, ...)
Arguments
object |
a |
... |
Unused argument |
Details
This function compute the summary of an issue (IssueTB
object) with
adding some information (number of comments, ...).
For a list of issues (IssuesTB
object), it just summarise the
information with statistics by modalities.
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"
)
# Summarise one issue
summary(all_issues[1, ])
# Summarise several issues
summary(all_issues[1:10, ])
[Package IssueTrackeR version 1.2.0 Index]