Description Usage Arguments Value Examples
Read a .dwt file. Result is a list of "segments", which is a dataframe extra data. See "segment" for more details. Converts millisecond dwells to seconds.
1 | dwt.read(filename, separating_factor = 1000)
|
filename |
Filename to read from |
separating_factor |
In lieu of a known time between segments, seperate with a multple of the longest dwell. |
A list of bursts (possibly a singleton)
1 2 3 4 5 6 7 8 9 10 11 | infile <- system.file("extdata", "example1_tac.evt", package = "scbursts")
transitions <- evt.read(infile)
dwells <- evt.to_dwells(transitions)
dwt.write(dwells, file=file.path(tempdir(), "dwells.dwt"))
# Quit R, come back the next day
## Not run:
dwells <- dwt.read("dwells.dwt")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.