Description Usage Arguments Value Author(s) See Also Examples
Write a SpotfinderData object to file.
1 2 |
filename |
The filename of the file to be written. |
path |
The path to the file. |
slide |
Slide to be saved. |
Returns nothing.
Henrik Bengtsson (http://www.braju.com/R/)
To read one or more SpotfinderData files at once
see *read()
.
For more information see SpotfinderData
.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
sf <- SpotfinderData$read("sf111.tav", path=system.file("data-ex", package="aroma"))
# Write the SpotfinderData object to a temporary file.
filename <- paste(tempfile("SpotfinderData"), ".tav", sep="")
write(sf, filename)
sf2 <- SpotfinderData$read(filename)
print(equals(sf, sf2)) # TRUE
unlink(filename)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.