foreign {POD} | R Documentation |
Support Other Platforms
Description
Export formatted data or code for use by other platforms
Usage
exportQuodata(obj)
exportSAS(obj)
exportExcelMacro(dest)
Arguments
obj |
A list returned by |
dest |
The path to write the excel macro to. |
Details
The output of exportQuodata can be used on the QuoData website (http://quodata.de/content/validation-qualitative-pcr-methods-single-laboratory).
Function exportExcelMacro()
creates an Excel macro in the specified directory. Existing files (older versions for instance) will not be overwritten! To create the macro in the current directory, set destination to ""
(Windows) or "."
(Linux), respectively.
Value
Nothing is returned by exportQuodata()
and exportSAS()
. Function exportExcelMacro()
returns a boolean, FALSE
if a file with name 'pod.xlsm' already exists, TRUE
otherwise.
See Also
Examples
x <- cbind(
X=c( 0.1,1,2,5,10,20 ),
S=c( 0,5,6,6,6,6 ),
N=c( 6,6,6,6,6,6 )
)
obj <- analyzeSingleLab(x=x)
exportQuodata(obj)
[Package POD version 1.2.0 Index]