Description Usage Arguments Details Value See Also Examples
Export formatted data or code for use by other platforms
1 2 3 4 5 | 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.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.