View source: R/trajectory-methods.R
join | R Documentation |
Concatenate any number of trajectories in the specified order.
join(...)
... |
trajectory objects. |
Returns a new trajectory object.
Extract.trajectory
, length.trajectory
,
get_n_activities
.
t1 <- trajectory() %>% seize("dummy", 1)
t2 <- trajectory() %>% timeout(1)
t3 <- trajectory() %>% release("dummy", 1)
## join can be used alone
join(t1, t2, t3)
## or can be chained in a trajectory definition
trajectory() %>%
join(t1) %>%
timeout(1) %>%
join(t3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.