foreign: Support Other Platforms

Description Usage Arguments Details Value See Also Examples

Description

Export formatted data or code for use by other platforms

Usage

1
2
3
4
5

Arguments

obj

A list returned by analyzeSingleLab.

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

getwd, dir

Examples

1
2
3
4
5
6
7
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)

POD documentation built on July 2, 2020, 3:16 a.m.