Description Usage Arguments Value See Also Examples
The label is optional. If not supplied, the default timer, labelled 
'Default' will be used.
1 2 3 4 5 6 7  | stop_timer(x, label = "Default")
## S4 method for signature 'Track_time,ANY'
stop_timer(x)
## S4 method for signature 'Track_time,character'
stop_timer(x, label = "Default")
 | 
x | 
 a   | 
label | 
 an optional label used to maintain multiple tracking timers  | 
Track_time object
1 2 3 4 5 6 7 8 9 10  | timer <- Track_time()
print(timer)
timer <- start_timer(timer, 'test')
print(timer, 'test')
timer <- stop_timer(timer, 'test')
print(timer)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.