Displaying 1 result from an estimated 1 matches for "calibrated_parameters_full_set".
2010 Dec 31
0
(no subject)
...e library RODBC to export data into an excel file with different sheets.
Here is the code:
library(RODBC)
save2excel <- function(x, t.name,channel) {
sqlSave(channel, x, tablename = t.name, rownames = FALSE)
}
## Write Parameters to Excel
channel <- odbcConnectExcel(paste(data.dir,"Calibrated_Parameters_Full_Set",".xls",sep=""), readOnly = FALSE)
save2excel(biological.parameters, "parameter", channel)
save2excel(mixing.parameters[[1]], "orientation_mix", channel)
save2excel(mixing.parameters[[2]], "risk_mix", channel)
save2excel(mixing.parameters[[3]],...