I generated a task and assigned an order variable ("Date"). So, I have access to the following elements:
task$row_ids
and task$col_roles$order
.
The latter helps me to double-check the name of the ordering variable, so I can retrieve the order variable e.g. by task$data(cols = c("Date"))
.
Now, as the row_ids are only guaranteed to be unique natural numbers (and not necessarily a sequence): How can I be sure that a command like
Lookup<-tibble(task$data(cols = c("Date")), task$row_ids)
generates a table that I can later use to recover the Date identifiers of the rows in task$data()
? Or ist this trivial, as the order is respected by construction? (and I assigned order role to the Date column)