create_dose.Rd
This function creates a pharmacokinetic dose dataset from the provided concentration data.
create_dose(adnca_conc)
A data frame containing the dose data.
The function performs the following steps:
Arranges the data by 'USUBJID' and 'DOSNO'.
Groups the data by 'USUBJID' and 'DOSNO'.
Selects the first row within each group.
Converts 'DOSEA' to numeric and retains the 'ROUTE' as 'IQROUTE'.
if (FALSE) { # \dontrun{
# Example usage:
dose_data <- create_dose(conc_data)
} # }