Export a GPF to and XLS file
export_GPF.Rd
Ensures proper handling of colnames, rownames and NA in the respecitve sheets
export_GPF(GPF, filename)
Arguments
- GPF
GPF
- filename
file.path to XLS file- Directory will be created if not existing
Value
The GPF with updated filename
See also
General Parameter Format
Other GPF:
GPF(),
addIIVCov_toGPF(),
combineGPF(),
generate_GPFFromIQRnlmeEst(),
generate_GPFFromIQRnlmeProject(),
generate_GPFFromProjectInfo(),
generate_GPFFromProjectInfoList(),
imputeTYPEcol_GPF(),
load_GPF(),
read_GPFFromCSV(),
read_GPFFromXLS(),
sample_GPF(),
select_FromGPF()
Author
Daniel Lill (IntiQuan)
Examples
if (FALSE) { # \dontrun{
xlsfile <- system.file("examples/GPFExamples/xls2_ExponentialDecay.xlsx", package = "IQRtools")
GPF <- load_GPF(xlsfile)
export_GPF(GPF, tempfile(fileext = ".xlsx"))
} # }