View source: R/tabulate_events.R
collect_events | R Documentation |
scan a slice of an ArtifSet for events produced in R CMD check of source
collect_events(
af,
host,
event_class = "warnings",
BPPARAM = BiocParallel::bpparam(),
which_to_use = NULL
)
af |
instance of ArtifSet |
host |
character(1) name of host on which build report was generated |
event_class |
character(1) "warnings" (default) or "errors" |
BPPARAM |
instance of a BiocParallel BiocParallelParam subclass |
which_to_use |
vector of elements in ArtifSet (can be package names or numeric indices), defaults to NULL in which case all elements are examined for events |
z = make_demo_ArtifSet()
h = slot(z, "hostnames")
h
collect_events(z, event_class="warnings", host=h[1])
collect_events(z, event_class="errors", host=h[2])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.