Skip to content

Commit

Permalink
replace tidyverse load with tibble and dplyr, add tibble to codespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristineStawitz-NOAA committed Sep 10, 2024
1 parent dfddfa5 commit df7a1b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"packages": "make,gcc,g++,cmake,clang-tidy,clang-format,clang,doxygen,ninja-build,libxtst6,libxt6"
},
"ghcr.io/rocker-org/devcontainer-features/r-packages:1": {
"packages": "RcppEigen,dplyr,ggplot2,jsonlite,magrittr,methods,Rcpp,scales,TMB,usethis,devtools",
"packages": "RcppEigen,dplyr,ggplot2,jsonlite,magrittr,methods,Rcpp,scales,TMB,usethis,devtools,tibble",
"installSystemRequirements": true
},
// option to run rstudio. you can type rserver into the command line to
Expand Down
3 changes: 2 additions & 1 deletion vignettes/fims-documentation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ doc_list <- list(
```

```{r list-to-markdown, echo=FALSE, warning=FALSE, message=FALSE}
library(tidyverse)
library(dplyr)
library(tibble)
list2markdown <- function(list) {
enframe(list) |>
Expand Down

0 comments on commit df7a1b2

Please sign in to comment.