Description Usage Arguments Examples
This function exports the fingerprint to a single CSV file or the fcs file associated with a flowFrame object to a CSV file .
1 | export_csv(x, location = "./")
|
x |
flowCore::flowFrame or flowFDA::flowBasis object |
location |
absolute or relative path to where the resulting csv files are written to. If it does not exist, it will be created (provided the user has write persmissions in that directory). Defaults to working directory. |
1 2 3 4 5 6 7 8 | data(CoolingTower)
data(flowData)
### show class info to see if flowSet (collection of flowFrames) or flowBasis
class(flowData)
### Export csv files of the raw data
fsApply(flowData,export_csv,location="./raw_csv/")
### Export csv files of the fingerprint
export_csv(CoolingTower,location="./fingerprint/")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.