Skip to contents

Generate spliced timeline using a list

Usage

# S3 method for list
splice_time(x, ...)

Arguments

x

named list.

...

ignored.

Value

a Splice object.

Examples

l <- list(a = c(0, 10), b = c(10, 20), c = c(20, 30))
splice_time(l)
#>   Segment Start End
#> 1       a     0  10
#> 2       b    10  20
#> 3       c    20  30