Skip to content

Commit

Permalink
update print status function in single optio
Browse files Browse the repository at this point in the history
  • Loading branch information
Konrad1991 committed Sep 5, 2024
1 parent 800bbee commit 4c60c3b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
Binary file modified Rplots.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions ToDo.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
- [x] adapt plotting functions
* [x] plotly functionality
* [x] ggplot functionality
- [ ] fix error 3 datasets; 5 repetitions; --> params plot shows datasets and metrices plot shows repetitions
2 changes: 1 addition & 1 deletion tsf/R/DBA_Server.R
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ dbaServer <- function(id, df_reactive, df_list_reactive, nclicks) {
# check status
print_error(process()$read_error())
m <- process()$read_output()
m <- print_status(m, NULL, NULL, get_Model())
m <- print_status(m, get_Model())
req(is.character(m))
if(m != "") opti_message(m)
})
Expand Down
2 changes: 1 addition & 1 deletion tsf/R/GDA_Server.R
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ gdaServer <- function(id, df_reactive, df_list_reactive, nclicks) {
# check status
print_error(process()$read_error())
m <- process()$read_output()
m <- print_status(m, NULL, NULL, get_Model())
m <- print_status(m, get_Model())
req(is.character(m))
if(m != "") opti_message(m)
})
Expand Down
2 changes: 1 addition & 1 deletion tsf/R/HG_Server.R
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ hgServer <- function(id, df_reactive, df_list_reactive, nclicks) {
# check status
print_error(process()$read_error())
m <- process()$read_output()
m <- print_status(m, NULL, NULL, get_Model())
m <- print_status(m, get_Model())
req(is.character(m))
if(m != "") opti_message(m)
})
Expand Down
2 changes: 1 addition & 1 deletion tsf/R/IDA_Server.R
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ idaServer <- function(id, df_reactive, df_list_reactive, nclicks) {
# check status
print_error(process()$read_error())
m <- process()$read_output()
m <- print_status(m, NULL, NULL, get_Model())
m <- print_status(m, get_Model())
req(is.character(m))
if(m != "") opti_message(m)
})
Expand Down

0 comments on commit 4c60c3b

Please sign in to comment.