Add elements to a vector.
A vector containing the values in x with the elements of
values appended after the specified element of x.
Becker RA, Chambers JM, Wilks AR (1988). The New S Language. Chapman and Hall/CRC, London. ISBN 053409192X.
path <- system.file("data_issues", package = "IssueTrackeR")
open_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.
closed_issues <- get_issues(
source = "local",
dataset_dir = path,
dataset_name = "closed_issues.yaml"
)
#> Looking into closed_issues.yaml ...
#> The issues will be read from /home/runner/work/_temp/Library/IssueTrackeR/data_issues/closed_issues.yaml.
new_issues <- append(open_issues, closed_issues)