foreign {POD} | R Documentation |
Export formatted data or code for use by other platforms
exportQuodata(obj)
exportSAS(obj)
exportExcelMacro(dest)
obj |
A list returned by |
dest |
The path to write the excel macro to. |
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.
Nothing is returned by exportQuodata()
and exportSAS()
. Function exportExcelMacro()
returns a boolean, FALSE
if a file with name 'pod.xlsm' already exists, TRUE
otherwise.
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)