aboutsummaryrefslogtreecommitdiff
path: root/inst
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2014-05-02 12:11:19 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2014-05-02 12:11:19 +0200
commiteccb24356cdbd2f628c7bb10dbab801f6df663c0 (patch)
tree9a3fd9372a62f76e65043996ac55b8817bc6018d /inst
parent3746e251e68ea80de61bbef53d9a48eb3f99646b (diff)
Plot parameter confidence intervals
Diffstat (limited to 'inst')
-rw-r--r--inst/GUI/gmkin.R17
1 files changed, 14 insertions, 3 deletions
diff --git a/inst/GUI/gmkin.R b/inst/GUI/gmkin.R
index 7588183b..a8605deb 100644
--- a/inst/GUI/gmkin.R
+++ b/inst/GUI/gmkin.R
@@ -685,7 +685,8 @@ show_plot <- function(type, default = FALSE) {
ftmp$ds.index <<- ds.i
ftmp$ds <<- ds[[ds.i]]
}
- svalue(plot.gi) <<- plot_ftmp_png()
+ svalue(plot.ftmp.gi) <<- plot_ftmp_png()
+ svalue(plot.confint.gi) <<- plot_confint_png()
}
get_Parameters <- function(stmp, optimised)
{
@@ -758,6 +759,7 @@ pf <- gframe("Dataset 1, Model SFO", horizontal = TRUE,
cont = center, label = "Plotting and fitting")
# Plot area {{{3
+pf.p <- ggroup(cont = pf, horizontal = FALSE)
ftmp <- suppressWarnings(mkinfit(m[[m.cur]], override(ds[[ds.i]]$data),
err = "err",
control.modFit = list(maxiter = 0)))
@@ -773,7 +775,7 @@ plot_ftmp_png <- function() {
} else {
obs_vars_plot = names(ftmp$mkinmod$spec)
}
- png(tf, width = 400, height = 500)
+ png(tf, width = 400, height = 400)
plot(ftmp, main = ftmp$ds$title, obs_vars = obs_vars_plot,
xlab = ifelse(ftmp$ds$time_unit == "", "Time",
paste("Time in", ftmp$ds$time_unit)),
@@ -784,7 +786,16 @@ plot_ftmp_png <- function() {
return(tf)
}
-plot.gi <- gimage(plot_ftmp_png(), container = pf, width = 400, height = 500)
+plot_confint_png <- function() {
+ tf <- get_tempfile(ext=".png")
+ png(tf, width = 400, height = 400)
+ mkinparplot(ftmp)
+ dev.off()
+ return(tf)
+}
+
+plot.ftmp.gi <- gimage(plot_ftmp_png(), container = pf.p, width = 400, height = 400)
+plot.confint.gi <- gimage(plot_confint_png(), container = pf.p, width = 400, height = 400)
# Buttons and notebook area to the left {{{3
p.gg <- ggroup(cont = pf, horizontal = FALSE)

Contact - Imprint