-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dev portfolio performance * continued portf performance * contin port perf * refactoring portolio sims * porf sim started completing tests * portfolio perforamnce checks ok * smooth out portf perf * fixes in progress * portfolio performance finished * fix imports Co-authored-by: bjoern koneswarakantha <[email protected]>
- Loading branch information
Showing
127 changed files
with
7,438 additions
and
565 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ | |
^README\.Rmd$ | ||
^\.github$ | ||
^.\.sas7bdat$ | ||
^Dockerfile$ | ||
^docker-compose.yml$ | ||
^.dockerignore$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.vscode | ||
.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM rocker/verse:4.1 | ||
COPY . /simaerep | ||
RUN R -e "devtools::install('/simaerep/.', upgrade = 'never', dependencies = TRUE, repos = 'http://cran.us.r-project.org')" | ||
RUN rm /simaerep -r -f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# satisfy lintr | ||
# lintr falsely flags possibly_ecdf as unused variable | ||
# using rlang::.data here causes error with furrr in sim_test_data_portfolio | ||
# patnum, n_ae, visit | ||
|
||
if (getRversion() >= "2.15.1") { | ||
utils::globalVariables(c("possibly_ecdf", "patnum", "n_ae", "visit")) | ||
} | ||
|
||
#' @importFrom progressr progressor | ||
#' @importFrom cowplot get_legend plot_grid ggdraw draw_label plot_grid plot_grid | ||
#' @importFrom cowplot ggdraw draw_label | ||
#' @importFrom forcats fct_relevel | ||
#' @importFrom RColorBrewer brewer.pal | ||
#' @importFrom utils head | ||
#' @importFrom stats p.adjust quantile median runif poisson.test ecdf rnorm rpois sd | ||
#' @importFrom purrr safely possibly pmap map map2 pmap_dbl map2_dbl map_dbl | ||
#' @importFrom purrr map_int map_chr | ||
#' @importFrom furrr future_map future_pmap furrr_options | ||
#' @importFrom progressr with_progress | ||
#' @importFrom stringr str_count str_pad | ||
#' @importFrom rlang := .data | ||
#' @importFrom dplyr select mutate filter summarise group_by summarise_all summarise_at | ||
#' @importFrom dplyr mutate_all mutate_at ungroup vars bind_cols bind_rows pull | ||
#' @importFrom dplyr n_distinct distinct arrange right_join left_join inner_join | ||
#' @importFrom dplyr rename sample_n between row_number dense_rank desc case_when | ||
#' @importFrom dplyr group_by_at n is_grouped_df everything one_of lag | ||
#' @importFrom tidyr tibble unnest nest fill | ||
#' @importFrom lintr lint_package | ||
#' @importFrom knitr kable | ||
#' @importFrom tibble tibble | ||
NULL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.