ipolygrowth
Bacterial Growth Curve Parameters from Polynomial Model
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.4%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Bacterial Growth Curve Parameters from Polynomial Model
Basic Info
- Host: GitHub
- Owner: kivanvan
- License: gpl-3.0
- Language: HTML
- Default Branch: master
- Size: 24.6 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
- Releases: 2
Created over 3 years ago
· Last pushed almost 2 years ago
Metadata Files
Readme
Changelog
License
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# ipolygrowth
The goal of ipolygrowth is to calculate bacterial growth curve parameters using fourth degree polynomial functions. Functions are available for a single biological sample or multiple samples.
## Installation
The package can be installed from CRAN with:
```{r, eval = FALSE}
install.packages("ipolygrowth")
```
or the development version from [GitHub](https://github.com/) with:
``` {r, eval = FALSE}
# install.packages("devtools")
devtools::install_github("https://github.com/kivanvan/ipolygrowth", upgrade = F, quiet = T)
```
## Example
Load the packages first.
```{r, message = FALSE}
library(ipolygrowth)
library(dplyr)
```
The example data comes from the [growthrates](https://CRAN.R-project.org/package=growthrates) package.
```{r data}
# example data comes from the growthrates package (available on CRAN)
if (!"growthrates" %in% installed.packages()) {install.packages("growthrates")}
data <- growthrates::bactgrowth
```
Alternatively, download the `bactgrowth.txt` from [here](https://github.com/tpetzoldt/growthrates/tree/master/data) to the directory of your script. The data can then be read using the following code.
```{r alt data, eval = FALSE}
data <- read.table("bactgrowth.txt", header = TRUE) %>%
mutate(strain = factor(strain, levels = c("D", "R", "T")))
```
This is a basic example which shows you how to use the single sample function:
```{r example}
# subset data to a single biological sample
df.singlesample <- data %>% dplyr::filter(strain == "D", conc == 0)
# calculate growth curve parameters using ipolygrowth function
out.singlesample <- ipg_singlesample(data = df.singlesample, time.name = "time", y.name = "value")
```
The output is a list, including a table of growth parameter estimates, the polynomial model, a table of beta coefficients, and a table of fitted values. Growth parameters include peak growth rate, peak growth time, doubling time (at the peak growth), lag time, max y, and max y time. View the results by calling each list element like:
```{r view reults}
out.singlesample$estimates
```
For more instructions and the expected output of vignette, please refer to the [vignette on CRAN]( https://CRAN.R-project.org/package=ipolygrowth).
Owner
- Name: JW
- Login: kivanvan
- Kind: user
- Repositories: 2
- Profile: https://github.com/kivanvan
GitHub Events
Total
Last Year
Packages
- Total packages: 1
-
Total downloads:
- cran 216 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 2
- Total maintainers: 1
cran.r-project.org: ipolygrowth
Individual Growth Curve Parameter Calculation using Polynomial Functions
- Homepage: https://github.com/kivanvan/ipolygrowth
- Documentation: http://cran.r-project.org/web/packages/ipolygrowth/ipolygrowth.pdf
- License: GPL (≥ 3)
-
Latest release: 1.0.0
published almost 2 years ago
Rankings
Forks count: 28.3%
Dependent packages count: 28.7%
Dependent repos count: 34.4%
Stargazers count: 34.9%
Average: 43.0%
Downloads: 88.5%
Maintainers (1)
Last synced:
11 months ago
Dependencies
DESCRIPTION
cran
- R >= 3.4.0 depends
- dplyr * imports
- magrittr * imports
- rlang * imports
- tidyr * imports
- tidyselect * imports
- ggplot2 * suggests
- growthrates * suggests
- kableExtra * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
revdep/library/ipolygrowth/new/R6/DESCRIPTION
cran
- R >= 3.0 depends
- pryr * suggests
- testthat * suggests
revdep/library/ipolygrowth/new/cli/DESCRIPTION
cran
- R >= 3.4 depends
- utils * imports
- callr * suggests
- covr * suggests
- crayon * suggests
- digest * suggests
- glue >= 1.6.0 suggests
- grDevices * suggests
- htmltools * suggests
- htmlwidgets * suggests
- knitr * suggests
- methods * suggests
- mockery * suggests
- processx * suggests
- ps >= 1.3.4.9000 suggests
- rlang >= 1.0.2.9003 suggests
- rmarkdown * suggests
- rprojroot * suggests
- rstudioapi * suggests
- testthat * suggests
- tibble * suggests
- whoami * suggests
- withr * suggests
revdep/library/ipolygrowth/new/cpp11/DESCRIPTION
cran
- R >= 3.6.0 depends
- Rcpp * suggests
- bench * suggests
- brio * suggests
- callr * suggests
- cli * suggests
- covr * suggests
- decor * suggests
- desc * suggests
- ggplot2 * suggests
- glue * suggests
- knitr * suggests
- lobstr * suggests
- mockery * suggests
- progress * suggests
- rmarkdown * suggests
- scales * suggests
- testthat >= 3.2.0 suggests
- tibble * suggests
- utils * suggests
- vctrs * suggests
- withr * suggests
revdep/library/ipolygrowth/new/dplyr/DESCRIPTION
cran
- R >= 3.5.0 depends
- R6 * imports
- cli >= 3.4.0 imports
- generics * imports
- glue >= 1.3.2 imports
- lifecycle >=1.0.3 imports
- magrittr >= 1.5 imports
- methods * imports
- pillar >= 1.9.0 imports
- rlang >= 1.1.0 imports
- tibble >= 3.2.0 imports
- tidyselect >= 1.2.0 imports
- utils * imports
- vctrs >= 0.6.4 imports
- DBI * suggests
- Lahman * suggests
- RMySQL * suggests
- RPostgreSQL * suggests
- RSQLite * suggests
- bench * suggests
- broom * suggests
- callr * suggests
- covr * suggests
- dbplyr >= 2.2.1 suggests
- ggplot2 * suggests
- knitr * suggests
- lobstr * suggests
- microbenchmark * suggests
- nycflights13 * suggests
- purrr * suggests
- rmarkdown * suggests
- stringi >= 1.7.6 suggests
- testthat >= 3.1.5 suggests
- tidyr >= 1.3.0 suggests
- withr * suggests
revdep/library/ipolygrowth/new/fansi/DESCRIPTION
cran
- R >= 3.1.0 depends
- grDevices * imports
- utils * imports
- knitr * suggests
- rmarkdown * suggests
- unitizer * suggests
revdep/library/ipolygrowth/new/generics/DESCRIPTION
cran
- R >= 3.2 depends
- methods * imports
- covr * suggests
- pkgload * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests
- withr * suggests
revdep/library/ipolygrowth/new/glue/DESCRIPTION
cran
- R >= 3.6 depends
- methods * imports
- DBI >= 1.2.0 suggests
- RSQLite * suggests
- crayon * suggests
- dplyr * suggests
- knitr * suggests
- magrittr * suggests
- rlang * suggests
- rmarkdown * suggests
- testthat >= 3.2.0 suggests
- vctrs >= 0.3.0 suggests
- waldo >= 0.3.0 suggests
- withr * suggests
revdep/library/ipolygrowth/new/ipolygrowth/DESCRIPTION
cran
- R >= 3.5.0 depends
- dplyr * imports
- magrittr * imports
- rlang * imports
- tidyr * imports
- tidyselect * imports
- ggplot2 * suggests
- growthrates * suggests
- kableExtra * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
revdep/library/ipolygrowth/new/lifecycle/DESCRIPTION
cran
- R >= 3.6 depends
- cli >= 3.4.0 imports
- glue * imports
- rlang >= 1.1.0 imports
- covr * suggests
- crayon * suggests
- knitr * suggests
- lintr * suggests
- rmarkdown * suggests
- testthat >= 3.0.1 suggests
- tibble * suggests
- tidyverse * suggests
- tools * suggests
- vctrs * suggests
- withr * suggests
revdep/library/ipolygrowth/new/magrittr/DESCRIPTION
cran
- R >= 3.4.0 depends
- covr * suggests
- knitr * suggests
- rlang * suggests
- rmarkdown * suggests
- testthat * suggests
revdep/library/ipolygrowth/new/pillar/DESCRIPTION
cran
- cli >= 2.3.0 imports
- fansi * imports
- glue * imports
- lifecycle * imports
- rlang >= 1.0.2 imports
- utf8 >= 1.1.0 imports
- utils * imports
- vctrs >= 0.5.0 imports
- DBI * suggests
- DiagrammeR * suggests
- bit64 * suggests
- debugme * suggests
- dplyr * suggests
- formattable * suggests
- ggplot2 * suggests
- knitr * suggests
- lubridate * suggests
- nanotime * suggests
- nycflights13 * suggests
- palmerpenguins * suggests
- rmarkdown * suggests
- scales * suggests
- stringi * suggests
- survival * suggests
- testthat >= 3.1.1 suggests
- tibble * suggests
- units >= 0.7.2 suggests
- vdiffr * suggests
- withr * suggests
revdep/library/ipolygrowth/new/pkgconfig/DESCRIPTION
cran
- utils * imports
- covr * suggests
- disposables >= 1.0.3 suggests
- testthat * suggests
revdep/library/ipolygrowth/new/purrr/DESCRIPTION
cran
- R >= 3.5.0 depends
- cli >= 3.6.1 imports
- lifecycle >= 1.0.3 imports
- magrittr >= 1.5.0 imports
- rlang >= 1.1.1 imports
- vctrs >= 0.6.3 imports
- covr * suggests
- dplyr >= 0.7.8 suggests
- httr * suggests
- knitr * suggests
- lubridate * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests
- tidyselect * suggests
revdep/library/ipolygrowth/new/rlang/DESCRIPTION
cran
- R >= 3.5.0 depends
- winch * enhances
- utils * imports
- cli >= 3.1.0 suggests
- covr * suggests
- crayon * suggests
- fs * suggests
- glue * suggests
- knitr * suggests
- magrittr * suggests
- methods * suggests
- pillar * suggests
- rmarkdown * suggests
- stats * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests
- usethis * suggests
- vctrs >= 0.2.3 suggests
- withr * suggests
revdep/library/ipolygrowth/new/stringi/DESCRIPTION
cran
- R >= 3.4 depends
- stats * imports
- tools * imports
- utils * imports
revdep/library/ipolygrowth/new/stringr/DESCRIPTION
cran
- R >= 3.6 depends
- cli * imports
- glue >= 1.6.1 imports
- lifecycle >= 1.0.3 imports
- magrittr * imports
- rlang >= 1.0.0 imports
- stringi >= 1.5.3 imports
- vctrs >= 0.4.0 imports
- covr * suggests
- dplyr * suggests
- gt * suggests
- htmltools * suggests
- htmlwidgets * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests
revdep/library/ipolygrowth/new/tibble/DESCRIPTION
cran
- R >= 3.4.0 depends
- fansi >= 0.4.0 imports
- lifecycle >= 1.0.0 imports
- magrittr * imports
- methods * imports
- pillar >= 1.8.1 imports
- pkgconfig * imports
- rlang >= 1.0.2 imports
- utils * imports
- vctrs >= 0.4.2 imports
- DiagrammeR * suggests
- bench * suggests
- bit64 * suggests
- blob * suggests
- brio * suggests
- callr * suggests
- cli * suggests
- covr * suggests
- crayon >=1.3.4 suggests
- dplyr * suggests
- evaluate * suggests
- formattable * suggests
- ggplot2 * suggests
- here * suggests
- hms * suggests
- htmltools * suggests
- knitr * suggests
- lubridate * suggests
- mockr * suggests
- nycflights13 * suggests
- pkgbuild * suggests
- pkgload * suggests
- purrr * suggests
- rmarkdown * suggests
- stringi * suggests
- testthat >=3.0.2 suggests
- tidyr * suggests
- withr * suggests
revdep/library/ipolygrowth/new/tidyr/DESCRIPTION
cran
- R >= 3.6 depends
- cli >= 3.4.1 imports
- dplyr >= 1.0.10 imports
- glue * imports
- lifecycle >= 1.0.3 imports
- magrittr * imports
- purrr >= 1.0.1 imports
- rlang >= 1.1.1 imports
- stringr >=1.5.0 imports
- tibble >= 2.1.1 imports
- tidyselect >= 1.2.0 imports
- utils * imports
- vctrs >= 0.5.2 imports
- covr * suggests
- data.table * suggests
- knitr * suggests
- readr * suggests
- repurrrsive >= 1.1.0 suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
revdep/library/ipolygrowth/new/tidyselect/DESCRIPTION
cran
- R >= 3.4 depends
- cli >= 3.3.0 imports
- glue >= 1.3.0 imports
- lifecycle >= 1.0.3 imports
- rlang >= 1.0.4 imports
- vctrs >= 0.5.2 imports
- withr * imports
- covr * suggests
- crayon * suggests
- dplyr * suggests
- knitr * suggests
- magrittr * suggests
- rmarkdown * suggests
- stringr * suggests
- testthat >= 3.1.1 suggests
- tibble >= 2.1.3 suggests
revdep/library/ipolygrowth/new/utf8/DESCRIPTION
cran
- R >= 2.10 depends
- cli * suggests
- covr * suggests
- knitr * suggests
- rlang * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
- withr * suggests
revdep/library/ipolygrowth/new/vctrs/DESCRIPTION
cran
- R >= 3.5.0 depends
- cli >= 3.4.0 imports
- glue * imports
- lifecycle >= 1.0.3 imports
- rlang >= 1.1.0 imports
- bit64 * suggests
- covr * suggests
- crayon * suggests
- dplyr >= 0.8.5 suggests
- generics * suggests
- knitr * suggests
- pillar >= 1.4.4 suggests
- pkgdown >= 2.0.1 suggests
- rmarkdown * suggests
- testthat >=3.0.0 suggests
- tibble >= 3.1.3 suggests
- waldo >= 0.2.0 suggests
- withr * suggests
- xml2 * suggests
- zeallot * suggests
revdep/library/ipolygrowth/new/withr/DESCRIPTION
cran
- R >= 3.6.0 depends
- grDevices * imports
- graphics * imports
- DBI * suggests
- RSQLite * suggests
- callr * suggests
- knitr * suggests
- methods * suggests
- rlang * suggests
- rmarkdown >= 2.12 suggests
- testthat >= 3.0.0 suggests
revdep/library/ipolygrowth/old/R6/DESCRIPTION
cran
- R >= 3.0 depends
- pryr * suggests
- testthat * suggests
revdep/library/ipolygrowth/old/cli/DESCRIPTION
cran
- R >= 3.4 depends
- utils * imports
- callr * suggests
- covr * suggests
- crayon * suggests
- digest * suggests
- glue >= 1.6.0 suggests
- grDevices * suggests
- htmltools * suggests
- htmlwidgets * suggests
- knitr * suggests
- methods * suggests
- mockery * suggests
- processx * suggests
- ps >= 1.3.4.9000 suggests
- rlang >= 1.0.2.9003 suggests
- rmarkdown * suggests
- rprojroot * suggests
- rstudioapi * suggests
- testthat * suggests
- tibble * suggests
- whoami * suggests
- withr * suggests
revdep/library/ipolygrowth/old/cpp11/DESCRIPTION
cran
- R >= 3.6.0 depends
- Rcpp * suggests
- bench * suggests
- brio * suggests
- callr * suggests
- cli * suggests
- covr * suggests
- decor * suggests
- desc * suggests
- ggplot2 * suggests
- glue * suggests
- knitr * suggests
- lobstr * suggests
- mockery * suggests
- progress * suggests
- rmarkdown * suggests
- scales * suggests
- testthat >= 3.2.0 suggests
- tibble * suggests
- utils * suggests
- vctrs * suggests
- withr * suggests
revdep/library/ipolygrowth/old/dplyr/DESCRIPTION
cran
- R >= 3.5.0 depends
- R6 * imports
- cli >= 3.4.0 imports
- generics * imports
- glue >= 1.3.2 imports
- lifecycle >=1.0.3 imports
- magrittr >= 1.5 imports
- methods * imports
- pillar >= 1.9.0 imports
- rlang >= 1.1.0 imports
- tibble >= 3.2.0 imports
- tidyselect >= 1.2.0 imports
- utils * imports
- vctrs >= 0.6.4 imports
- DBI * suggests
- Lahman * suggests
- RMySQL * suggests
- RPostgreSQL * suggests
- RSQLite * suggests
- bench * suggests
- broom * suggests
- callr * suggests
- covr * suggests
- dbplyr >= 2.2.1 suggests
- ggplot2 * suggests
- knitr * suggests
- lobstr * suggests
- microbenchmark * suggests
- nycflights13 * suggests
- purrr * suggests
- rmarkdown * suggests
- stringi >= 1.7.6 suggests
- testthat >= 3.1.5 suggests
- tidyr >= 1.3.0 suggests
- withr * suggests
revdep/library/ipolygrowth/old/fansi/DESCRIPTION
cran
- R >= 3.1.0 depends
- grDevices * imports
- utils * imports
- knitr * suggests
- rmarkdown * suggests
- unitizer * suggests
revdep/library/ipolygrowth/old/generics/DESCRIPTION
cran
- R >= 3.2 depends
- methods * imports
- covr * suggests
- pkgload * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests
- withr * suggests
revdep/library/ipolygrowth/old/glue/DESCRIPTION
cran
- R >= 3.6 depends
- methods * imports
- DBI >= 1.2.0 suggests
- RSQLite * suggests
- crayon * suggests
- dplyr * suggests
- knitr * suggests
- magrittr * suggests
- rlang * suggests
- rmarkdown * suggests
- testthat >= 3.2.0 suggests
- vctrs >= 0.3.0 suggests
- waldo >= 0.3.0 suggests
- withr * suggests
revdep/library/ipolygrowth/old/ipolygrowth/DESCRIPTION
cran
- R >= 3.4.0 depends
- dplyr * imports
- magrittr * imports
- rlang * imports
- tidyr * imports
- tidyselect * imports
- ggplot2 * suggests
- growthrates * suggests
- kableExtra * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
revdep/library/ipolygrowth/old/lifecycle/DESCRIPTION
cran
- R >= 3.6 depends
- cli >= 3.4.0 imports
- glue * imports
- rlang >= 1.1.0 imports
- covr * suggests
- crayon * suggests
- knitr * suggests
- lintr * suggests
- rmarkdown * suggests
- testthat >= 3.0.1 suggests
- tibble * suggests
- tidyverse * suggests
- tools * suggests
- vctrs * suggests
- withr * suggests
revdep/library/ipolygrowth/old/magrittr/DESCRIPTION
cran
- R >= 3.4.0 depends
- covr * suggests
- knitr * suggests
- rlang * suggests
- rmarkdown * suggests
- testthat * suggests
revdep/library/ipolygrowth/old/pillar/DESCRIPTION
cran
- cli >= 2.3.0 imports
- fansi * imports
- glue * imports
- lifecycle * imports
- rlang >= 1.0.2 imports
- utf8 >= 1.1.0 imports
- utils * imports
- vctrs >= 0.5.0 imports
- DBI * suggests
- DiagrammeR * suggests
- bit64 * suggests
- debugme * suggests
- dplyr * suggests
- formattable * suggests
- ggplot2 * suggests
- knitr * suggests
- lubridate * suggests
- nanotime * suggests
- nycflights13 * suggests
- palmerpenguins * suggests
- rmarkdown * suggests
- scales * suggests
- stringi * suggests
- survival * suggests
- testthat >= 3.1.1 suggests
- tibble * suggests
- units >= 0.7.2 suggests
- vdiffr * suggests
- withr * suggests
revdep/library/ipolygrowth/old/pkgconfig/DESCRIPTION
cran
- utils * imports
- covr * suggests
- disposables >= 1.0.3 suggests
- testthat * suggests
revdep/library/ipolygrowth/old/purrr/DESCRIPTION
cran
- R >= 3.5.0 depends
- cli >= 3.6.1 imports
- lifecycle >= 1.0.3 imports
- magrittr >= 1.5.0 imports
- rlang >= 1.1.1 imports
- vctrs >= 0.6.3 imports
- covr * suggests
- dplyr >= 0.7.8 suggests
- httr * suggests
- knitr * suggests
- lubridate * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests
- tidyselect * suggests
revdep/library/ipolygrowth/old/rlang/DESCRIPTION
cran
- R >= 3.5.0 depends
- winch * enhances
- utils * imports
- cli >= 3.1.0 suggests
- covr * suggests
- crayon * suggests
- fs * suggests
- glue * suggests
- knitr * suggests
- magrittr * suggests
- methods * suggests
- pillar * suggests
- rmarkdown * suggests
- stats * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests
- usethis * suggests
- vctrs >= 0.2.3 suggests
- withr * suggests
revdep/library/ipolygrowth/old/stringi/DESCRIPTION
cran
- R >= 3.4 depends
- stats * imports
- tools * imports
- utils * imports
revdep/library/ipolygrowth/old/stringr/DESCRIPTION
cran
- R >= 3.6 depends
- cli * imports
- glue >= 1.6.1 imports
- lifecycle >= 1.0.3 imports
- magrittr * imports
- rlang >= 1.0.0 imports
- stringi >= 1.5.3 imports
- vctrs >= 0.4.0 imports
- covr * suggests
- dplyr * suggests
- gt * suggests
- htmltools * suggests
- htmlwidgets * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests
revdep/library/ipolygrowth/old/tibble/DESCRIPTION
cran
- R >= 3.4.0 depends
- fansi >= 0.4.0 imports
- lifecycle >= 1.0.0 imports
- magrittr * imports
- methods * imports
- pillar >= 1.8.1 imports
- pkgconfig * imports
- rlang >= 1.0.2 imports
- utils * imports
- vctrs >= 0.4.2 imports
- DiagrammeR * suggests
- bench * suggests
- bit64 * suggests
- blob * suggests
- brio * suggests
- callr * suggests
- cli * suggests
- covr * suggests
- crayon >=1.3.4 suggests
- dplyr * suggests
- evaluate * suggests
- formattable * suggests
- ggplot2 * suggests
- here * suggests
- hms * suggests
- htmltools * suggests
- knitr * suggests
- lubridate * suggests
- mockr * suggests
- nycflights13 * suggests
- pkgbuild * suggests
- pkgload * suggests
- purrr * suggests
- rmarkdown * suggests
- stringi * suggests
- testthat >=3.0.2 suggests
- tidyr * suggests
- withr * suggests
revdep/library/ipolygrowth/old/tidyr/DESCRIPTION
cran
- R >= 3.6 depends
- cli >= 3.4.1 imports
- dplyr >= 1.0.10 imports
- glue * imports
- lifecycle >= 1.0.3 imports
- magrittr * imports
- purrr >= 1.0.1 imports
- rlang >= 1.1.1 imports
- stringr >=1.5.0 imports
- tibble >= 2.1.1 imports
- tidyselect >= 1.2.0 imports
- utils * imports
- vctrs >= 0.5.2 imports
- covr * suggests
- data.table * suggests
- knitr * suggests
- readr * suggests
- repurrrsive >= 1.1.0 suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
revdep/library/ipolygrowth/old/tidyselect/DESCRIPTION
cran
- R >= 3.4 depends
- cli >= 3.3.0 imports
- glue >= 1.3.0 imports
- lifecycle >= 1.0.3 imports
- rlang >= 1.0.4 imports
- vctrs >= 0.5.2 imports
- withr * imports
- covr * suggests
- crayon * suggests
- dplyr * suggests
- knitr * suggests
- magrittr * suggests
- rmarkdown * suggests
- stringr * suggests
- testthat >= 3.1.1 suggests
- tibble >= 2.1.3 suggests
revdep/library/ipolygrowth/old/utf8/DESCRIPTION
cran
- R >= 2.10 depends
- cli * suggests
- covr * suggests
- knitr * suggests
- rlang * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
- withr * suggests
revdep/library/ipolygrowth/old/vctrs/DESCRIPTION
cran
- R >= 3.5.0 depends
- cli >= 3.4.0 imports
- glue * imports
- lifecycle >= 1.0.3 imports
- rlang >= 1.1.0 imports
- bit64 * suggests
- covr * suggests
- crayon * suggests
- dplyr >= 0.8.5 suggests
- generics * suggests
- knitr * suggests
- pillar >= 1.4.4 suggests
- pkgdown >= 2.0.1 suggests
- rmarkdown * suggests
- testthat >=3.0.0 suggests
- tibble >= 3.1.3 suggests
- waldo >= 0.2.0 suggests
- withr * suggests
- xml2 * suggests
- zeallot * suggests
revdep/library/ipolygrowth/old/withr/DESCRIPTION
cran
- R >= 3.6.0 depends
- grDevices * imports
- graphics * imports
- DBI * suggests
- RSQLite * suggests
- callr * suggests
- knitr * suggests
- methods * suggests
- rlang * suggests
- rmarkdown >= 2.12 suggests
- testthat >= 3.0.0 suggests