From 00b8c6fb49a5f2fb15022f725fbf3565ccca0eaa Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Wed, 9 Dec 2015 11:44:58 +0100 Subject: Fix sorting of tables in results view --- DESCRIPTION | 4 ++-- NEWS.md | 6 +++++- inst/GUI/gmkin.R | 10 ++++++---- vignettes/gmkin_manual.html | 4 ++-- 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 7e8335a..3496504 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: gmkin Type: Package Title: Graphical User Interface for Fitting Kinetic Models to Chemical Degradation Data -Version: 0.6.3 -Date: 2015-11-28 +Version: 0.6.4 +Date: 2015-12-09 Authors@R: c(person("Johannes", "Ranke", role = c("aut", "cre", "cph"), email = "jranke@uni-bremen.de"), person("Eurofins Regulatory AG", role = "cph")) diff --git a/NEWS.md b/NEWS.md index 5504d39..805ce1e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,8 +1,12 @@ # NEWS for package 'gmkin' +## gmkin 0.6-4 (2015-12-09) + +- Various small corrections of unexpected or incorrect GUI behaviour. See git commit logs for details. + ## gmkin 0.6-3 (2015-11-28) -- Various small layout and GUI logic improvements based on the suggestions by Stefan Meinecke (Umweltbundesamt Germany). Thanks! +- Various small layout and GUI logic improvements based on the suggestions by Stefan Meinecke (Umweltbundesamt Germany). Thanks, also for the financial support from the Umweltbundesamt! ### Minor changes diff --git a/inst/GUI/gmkin.R b/inst/GUI/gmkin.R index 954fe74..b58f2e7 100644 --- a/inst/GUI/gmkin.R +++ b/inst/GUI/gmkin.R @@ -314,12 +314,14 @@ update_f_conf <- function() { # {{{3 } update_f_results <- function() { # {{{3 svalue(r.name) <- ftmp$name - r.parameters[] <- cbind(rownames(stmp$bpar), stmp$bpar[, c(1, 4, 5, 6)]) + r.parameters[] <- cbind(Parameter = rownames(stmp$bpar), stmp$bpar[, c(1, 4, 5, 6)]) err.min <- 100 * stmp$errmin$err.min - r.frames.chi2.gt[] <- cbind(rownames(stmp$errmin), signif(err.min, 3), - stmp$errmin[, c(2, 3)]) + r.frames.chi2.gt[] <- cbind(Variable = rownames(stmp$errmin), + Error = signif(err.min, 3), + n.opt = stmp$errmin$n.optim, + df = stmp$errmin$df) if (is.null(stmp$ff)) r.frames.ff.gt[] <- ff.df.empty - else r.frames.ff.gt[] <- cbind(names(stmp$ff), round(stmp$ff, 4)) + else r.frames.ff.gt[] <- cbind(Path = names(stmp$ff), ff = round(stmp$ff, 4)) distimes <- format(stmp$distimes, digits = 3) delete(r.frames.distimes, r.frames.distimes.gt) delete(r.frames, r.frames.distimes) diff --git a/vignettes/gmkin_manual.html b/vignettes/gmkin_manual.html index ed3ca7f..e9e90a5 100644 --- a/vignettes/gmkin_manual.html +++ b/vignettes/gmkin_manual.html @@ -10,7 +10,7 @@ - + Manual for gmkin @@ -65,7 +65,7 @@ img {
-- cgit v1.2.1