Description Usage Arguments Examples
writes a binary seaflow event file from a dataframe in memory
1 | writeSeaflow(file.path, df, column.names = EVT.HEADER, linearize=TRUE)
|
file.path |
System path to the binary seaflow event file. |
df |
SeaFlow dataframe in memory to be written to disk. |
column.names |
Names of the columns. By default it uses the global variable 'EVT.HEADER' |
linearize |
Linearize log transformed data (use only if data were previously log transformed, see readSeaflow( ) function for more details). |
1 2 3 4 5 | opp.path <- system.file("extdata","seaflow_cruise","2011_001", "1.evt.opp",
package="flowPhyto")
opp <- readSeaflow(opp.path)
writeSeaflow('./tmp.seaflow', opp)
Sys.sleep(30) # for windows build
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.