Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Authors@R: c(
Imports:
checkmate,
dplyr (>= 1.1.0),
digest,
digest,
nlme,
purrr,
rlang,
Expand All @@ -23,14 +23,18 @@ Suggests:
covr,
cowplot,
ggplot2,
haven,
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can it work just importing rio and not haven?

knitr,
labeling,
pander,
rmarkdown,
spelling,
testthat (>= 3.0.0),
units,
withr
withr,
rio,
zoo,
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like to avoid more than the required number of imports. If possible, please omit zoo and janitor.

janitor
Description: Compute standard Non-Compartmental Analysis (NCA) parameters for
typical pharmacokinetic analyses and summarize them.
License: AGPL-3
Expand Down
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,16 @@ export(getDepVar)
export(getGroups)
export(getIndepVar)
export(get_halflife_points)
export(get_mapped_column)
export(get_pk_patterns)
export(group_by)
export(inner_join)
export(interp.extrap.conc)
export(interp.extrap.conc.dose)
export(interpolate.conc)
export(is_sparse_pk)
export(left_join)
export(load_pk_data)
export(mutate)
export(normalize)
export(normalize_by_col)
Expand Down
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ the dosing including dose amount and route.

# PKNCA 0.12.2

# PKNCA (development version)

## New features
* `load_pk_data()` now provides a unified pipeline for loading, classifying,
cleaning, and standardising PK data across multiple file formats, with
improved column detection, BLQ handling, and decimal formatting.

## Bug Fixes

* `normalize.data.frame()` no longer triggers a dplyr deprecation warning
Expand Down
Loading