From 8ba95424301431c4c8b8da28f24d2bcb58887bb1 Mon Sep 17 00:00:00 2001 From: Egon Willighagen Date: Fri, 20 Feb 2015 18:11:53 +0100 Subject: [PATCH] No spaces in PDF file names --- RRegrs/R/RRegrs_Functions.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RRegrs/R/RRegrs_Functions.R b/RRegrs/R/RRegrs_Functions.R index 9242092..ac73838 100644 --- a/RRegrs/R/RRegrs_Functions.R +++ b/RRegrs/R/RRegrs_Functions.R @@ -3674,8 +3674,8 @@ RRegrs<- function(DataFileName="ds.House.csv",PathDataSet="DataResults",noCores= cat("Statistics for all data set splittings/methods/CV types:", ResBySplits,"\n") cat("Averages by method/CV type:",ResAvgsF,"\n") cat("Best model statistics:",ResBestF,"\n") - cat("Best model plots:",paste(ResBestF,".repeatedcv.split",i,".pdf"),"\n") - cat("Best model Y-randomization plot:",paste(ResBestF,".Yrand.Hist.pdf"),"\n") + cat("Best model plots:",paste(ResBestF,".repeatedcv.split",i,".pdf",sep=""),"\n") + cat("Best model Y-randomization plot:",paste(ResBestF,".Yrand.Hist.pdf",sep=""),"\n") cat("\n* if you choose Details, additional CSV and PDF files will be create for each method.\n") return(list(BestMethod=best.reg,BestStats=my.stats.reg, Models=dfMod))