Description Usage Arguments Value Author(s) Examples
View source: R/export_Filter.R
This function exports a filter as a .FLT file.
1  | export_Filter(object, file.name)
 | 
object | 
 
  | 
file.name | 
 character name of the .FLT file that will contain the filter properties.  | 
The function creates a new txt file containing the filter properties.
David Strebler, University of Cologne (Germany).
1 2 3 4 5 6 7 8 9 10 11 12 13 14  | example <- default_Filters('example')[[1]]
file.name <- 'example'
## Not run: 
export_Filter(example, file.name)  # uncomment
## End(Not run)
# There is now an 'example.FLT' file in the 'working directory'.
# This file is a classical .txt file despite the extension.
file <- paste(getwd(),'/', file.name,'.FLT', sep="")
print(file)
# readLines(file)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.