load_source_timing: Load source timing information from a _TimeTracker_ database

Description Usage Arguments Value Examples

View source: R/loading_data.R

Description

Open the specified TimeTracker database file, and read the event-by-event timing information for the source. If lbl is non-NULL, the returned dataframe will contain a column named lbl, containing the user-supplied label. The intent is that this label allows many such dataframes, each with a distinct label, to be concatenated with dplyr::rbind_list or rbind, and used for comparitive analysis.

Usage

1
load_source_timing(filename, lbl = NULL)

Arguments

filename

The name of the TimeTracker database file to open.

lbl

The label to be applied to each row in the dataframe. Default is NULL, in which cade no label is added.

Value

a dataframe

Examples

1
2
3
4
5
6
## Not run: 
d1 <- load_source_timing("woof/timing.db", "woof")
d2 <- load_source_timing("lsd6/timing.db", "lsd6")
d3 = rbind(d1, d2)

## End(Not run)

marcpaterno/artsupport documentation built on May 6, 2020, 1:46 a.m.