selectRuns: Select runs that match search parameters

Description Usage Arguments Details Value See Also

Description

This method is used to retrieve execution metadata for runs that match the search parameters.

Usage

1
2
3
4
5
6
7
8
selectRuns(recordr, ...)

## S4 method for signature 'Recordr'
selectRuns(recordr, runId = as.character(NA),
  script = as.character(NA), startTime = as.character(NA),
  endTime = as.character(NA), tag = as.character(NA),
  errorMessage = as.character(NA), seq = as.integer(NA),
  orderBy = "-startTime", delete = FALSE)

Arguments

recordr

A Recordr instance

...

additional parameters

runId

An execution identifiers

script

The flle name of script to match.

startTime

Match executions that started after this time (inclusive)

endTime

Match executions that ended before this time (inclusive)

tag

The text of tag to match.

errorMessage

The text of error message to match.

seq

The run sequence number

orderBy

The column that will be used to sort the output. This can include a minus sign before the name, e.g. -startTime

delete

A logical value, if TRUE then the selected runs are deleted from the Recordr database.

Details

This method is used internally by the recordr package.

Value

A data.frame that contains execution metadata for executions that matched the search criteria

See Also

Recordr class description


recordr documentation built on Sept. 12, 2016, 12:58 p.m.

Related to selectRuns in recordr...