Skip to content

Commit

Permalink
Prepare for CRAN submission
Browse files Browse the repository at this point in the history
  • Loading branch information
billdenney committed Apr 28, 2023
1 parent 7ab87da commit 7c63393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/pk.calc.urine.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pk.calc.ae <- function(conc, volume, check=TRUE) {
} else if (any(mask_missing_vol)) {
message_vol <- sprintf("%g of %g volumes are missing", sum(mask_missing_vol), length(conc))
}
message_all <- na.omit(c(message_both, message_conc, message_vol))
message_all <- stats::na.omit(c(message_both, message_conc, message_vol))
ret <- sum(conc*volume)
if (length(message_all) != 0) {
message <- paste(message_all, collapse = "; ")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- badges: start -->
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/PKNCA)](https://cran.r-project.org/package=PKNCA)
[![R-CMD-check](https://github.com/billdenney/pknca/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/billdenney/pknca/actions/workflows/R-CMD-check.yaml)
[![Code_Coverage_Badge](https://codecov.io/github/billdenney/pknca/coverage.svg?branch=main)](https://codecov.io/github/billdenney/pknca?branch=main)
[![Code_Coverage_Badge](https://codecov.io/github/billdenney/pknca/coverage.svg?branch=main)](https://app.codecov.io/github/billdenney/pknca?branch=main)
[![CodeFactor](https://www.codefactor.io/repository/github/billdenney/pknca/badge?style=plastic)](https://www.codefactor.io/repository/github/billdenney/pknca)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/2054/badge)](https://bestpractices.coreinfrastructure.org/projects/2054)
<!-- badges: end -->
Expand Down

0 comments on commit 7c63393

Please sign in to comment.