Description Usage Arguments Author(s) Examples
View source: R/exportPubHelpercsv.R
This function is a short pre-specified version of write.table with options indicated for table inclusion in scientific publications.
1 | exportPubHelpercsv(object = NULL, file = NULL, sep = ",")
|
object |
Output data.frame for export as .csv file. |
file |
Filename (and location). |
sep |
Separator for csv file. Defaults is ",". |
Nils Kappelmann
1 2 3 4 | data(airquality)
model = lm(Temp ~ Wind, data = airquality)
outputTable = formatGLMTable(model = model)
exportPubHelpercsv(outputTable, file = "PubHelperTest.csv")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.