Count Still Open Issues Over Time

get_still_open(x, ...)

# S3 method for class 'IssuesTB'
get_still_open(x, lag = 0L, ...)

# Default S3 method
get_still_open(...)

Arguments

x

An object of class IssuesTB.

...

Currently not used.

lag

Numeric. Number of years to look back for "still open" issues. Default is 0.

Value

ts object with still open issues counts per month.

Examples

path <- system.file("data_issues", package = "IssueTrackeR")
issues <- get_issues(
    source = "local",
    dataset_dir = path,
    dataset_name = "open_issues.yaml"
)
#> Looking into open_issues.yaml ...
#> The issues will be read from /home/runner/work/_temp/Library/IssueTrackeR/data_issues/open_issues.yaml.
open_issues <- IssueTrackeR:::get_still_open(issues, lag = 1L)