POD (version 1.2.0)

foreign: 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 analyzeSingleLab.

dest

The path to write the excel macro to.

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.

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.

See Also

getwd, dir

Examples

Run this code
# NOT RUN {
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)


# }

Run the code above in your browser using DataLab