Description Usage Arguments Value See Also Examples
View source: R/tdmEnvTMakeNew.r
Given the results from a prior tuning run in envT
, make a sensitivity plot
for this run.
If envT$tdm$nrun > 0
then make additionally with the best-performing parameters from
the tuning run a new unbiased run on the test data.
1 | tdmEnvTReport(envT, ind)
|
envT |
results from a prior tuning run. |
ind |
an integer from |
envT
, with data frame finals
added, if envT$tdm$nrun > 0
.
1 2 3 4 5 6 7 8 9 10 |
## The best results are read from demo02sonar/demoSonar.RData relative to the TDMR
## package directory.
path = paste(find.package("TDMR"), "demo02sonar",sep="/");
envT = tdmEnvTLoad("demoSonar.RData",path); # loads envT
source(paste(path,"main_sonar.r",sep="/"));
envT$tdm$nrun=0; # =0: don't, >0: do unbiasedRun with opts$NRUN=envT$tdm$nrun
envT$sCList[[1]]$opts$VERBOSE=1;
envT <- tdmEnvTReport(envT,1);
if (!is.null(envT$theFinals)) print(envT$theFinals);
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.