find_time_col | R Documentation |
Search data frame names for the first matching candidate TIME column name.
See details
.
find_time_col(data)
data |
a data.frame to search |
Column names will be searched against the following candidates
TIME
DATETIME
The first the first candidate to be matched will be returned. If there are no matches, an error is generated.
data <- data.frame(A = 1, DATETIME = 2, TIME = 3, Z = 99)
lastdose:::find_time_col(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.