Skip to content

Commit

Permalink
v0.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
stevechoy committed Nov 28, 2024
1 parent f2f313c commit 23b6aff
Show file tree
Hide file tree
Showing 148 changed files with 2,250 additions and 1,936 deletions.
10 changes: 5 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: MVPapp
Title: Model Visualization Platform
Version: 0.2.9
Version: 0.2.10
Authors@R: c(
person("Steve", "Choy", email = "[email protected]", role = c("aut", "cre")),
person("Jin Gyu", "Kim", role = "aut"))
Expand Down Expand Up @@ -45,15 +45,15 @@ Imports: bslib (>= 0.5.1),
tidyr
Suggests: readr,
foreign,
mrgsolve (>= 1.5.1),
mrgsolve (>= 1.5.2),
knitr,
rmarkdown
Depends: R (>= 3.5.0)
LazyData: true
Collate: "utils-pipe.R"
"ui_settings_v_0_2_9.R"
"code_templates_v_0_2_8_exp.R"
"functions_v_0_2_9.R"
"ui_settings_v_0_2_10.R"
"code_templates_v_0_2_10.R"
"functions_v_0_2_10.R"
"config.R"
"run_mvp.R"
"data.R"
Expand Down
8 changes: 8 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export(bi_logo)
export(bi_warmgray)
export(binary_cat_dist)
export(blank_template)
export(boxplot_label)
export(bspop_MW_checkbox)
export(bspop_adjust_param)
export(bspop_apply)
Expand All @@ -40,7 +41,10 @@ export(bspop_dataset_cleaning)
export(bspop_dataset_code)
export(bspop_db)
export(bspop_deselect)
export(bspop_do_boxplot)
export(bspop_do_data_plotly)
export(bspop_do_iiv_plotly)
export(bspop_do_sim_plotly)
export(bspop_dose)
export(bspop_dose_value)
export(bspop_download_cpp_model)
Expand All @@ -63,6 +67,7 @@ export(bspop_rate)
export(bspop_scale_x_axis)
export(bspop_seed)
export(bspop_select_columns)
export(bspop_select_label_size)
export(bspop_select_model)
export(bspop_select_psa)
export(bspop_select_y_value_threshold)
Expand Down Expand Up @@ -211,6 +216,7 @@ export(safely_run_single_sim)
export(sample_age_wt)
export(sanitize_numeric_input)
export(select_color)
export(select_label_size_label)
export(select_median)
export(select_x_axis)
export(select_y_axis)
Expand Down Expand Up @@ -272,6 +278,7 @@ importFrom(ggplot2,aes)
importFrom(ggplot2,annotate)
importFrom(ggplot2,annotation_logticks)
importFrom(ggplot2,facet_wrap)
importFrom(ggplot2,geom_boxplot)
importFrom(ggplot2,geom_line)
importFrom(ggplot2,geom_point)
importFrom(ggplot2,ggplot)
Expand Down Expand Up @@ -307,6 +314,7 @@ importFrom(shinyalert,shinyalert)
importFrom(shinydashboard,box)
importFrom(shinydashboard,valueBox)
importFrom(stringr,str_detect)
importFrom(tibble,glimpse)
importFrom(tidyr,everything)
importFrom(tidyr,pivot_longer)
importFrom(tidyr,pivot_wider)
18 changes: 18 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# MVPapp 0.2.10 (2024-11-28)

## Features

* Less strict requirements for Data Exploration plots to only require "ID" column to be present (previously would require "ID", "DV", and "TIME").
* Interactive plot toggle for Simulation and Data page plots.
* Boxplot functionality for Data Exploration - Plot Output. (#7)
* Text size option for labels (affects linear regression formulae and boxplot counts (N=x) only).

## Bugfixes

* Fixed some typos.
* Most selectizeInputs now sort alphabetically.

## Other

* Suggests mrgsolve v.1.5.2 to be installed.

# MVPapp 0.2.9 (2024-10-25)

## Features
Expand Down
Loading

0 comments on commit 23b6aff

Please sign in to comment.