Skip to content

Commit

Permalink
-fixed typo in plot function
Browse files Browse the repository at this point in the history
  • Loading branch information
wojcieko committed Oct 4, 2023
1 parent 585a215 commit 644ec5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plot.modelFits <- function (

) {

plot_resolution <- 1e3
plot_resolution <- 1e3

dose_levels <- model_fits[[1]]$dose_levels
post_summary <- summary.postList(attr(model_fits, "posterior"))
Expand Down Expand Up @@ -39,7 +39,7 @@ plot.modelFits <- function (
if (gAIC) {

g_AICs <- sapply(model_fits, function (x) x$gAIC)
label_gAUC <- paste("AIC:", round(g_AICs), digits = 1)
label_gAUC <- paste("AIC:", round(g_AICs, digits = 1))

if (avg_fit) {

Expand Down

0 comments on commit 644ec5c

Please sign in to comment.