Description Usage Arguments Value Examples
View source: R/gdfpd_export_DFP_Data.R
Copies data to external file
| 1 2 3 4 5 6 7 | my.copy.fct(
  df.in,
  name.df,
  base.file.name,
  type.export = "xlsx",
  csv.dir = tempdir()
)
 | 
| df.in | Dataframe to be copied | 
| name.df | Name of dataframe to be copied | 
| base.file.name | The basename of excel file (make sure you dont include the file extension) | 
| type.export | The extension of the desired format: 'xlsx' (default) or 'csv' | 
| csv.dir | Location where to save csv files prior to zipping (default = tempdir()) | 
TRUE (invisible), if successfull
| 1 2 3 4 5 6 | test.data <- data.frame(test.data = runif(100))
name.df <- 'TestData'
base.file.name <- 'TestData'
type.export <- 'csv'
my.copy.fct(df.in = test.data, name.df, base.file.name, type.export)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.