Skip to content

Commit 8f03df2

Browse files
committed
Clarify Project D Day 2 slides; give answers for the hands-on exercises
1 parent 7917892 commit 8f03df2

3 files changed

+10
-6
lines changed

courses/2023-10-18-Project D-training-session-hands-on-hints.Rmd

+8-4
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,10 @@ as AUClast, Cmax, and Tmax.
209209

210210
```{r eval=FALSE, echo=FALSE}
211211
library(PKNCA)
212+
library(tidyverse)
212213
213-
d_conc <- read.csv("Hands-on 1_Whale PK/whale_conc.csv")
214-
d_dose <- read.csv("Hands-on 1_Whale PK/whale_dose.csv")
214+
d_conc <- read.csv("2023-10-18-Project D files/Hands-on 1_Whale PK/whale_conc.csv")
215+
d_dose <- read.csv("2023-10-18-Project D files/Hands-on 1_Whale PK/whale_dose.csv")
215216
head(d_conc)
216217
head(d_dose)
217218
@@ -292,9 +293,12 @@ o_conc <- PKNCAconc(data = d_conc, conc~time|Subject)
292293
# with the correct arguments.
293294
d_intervals <-
294295
data.frame(
295-
start =,
296-
end =,
296+
start = c(0, 120),
297+
end = c(24, 144),
297298
# insert the parameters to calculate here
299+
aucint.inf.obs = TRUE,
300+
cmax = TRUE,
301+
tmax = TRUE
298302
)
299303
o_data <- PKNCAdata(o_conc, intervals = d_intervals)
300304
o_nca <- pk.nca(o_data)

courses/2023-10-18-Project D-training-session.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ d_multidose_single_analyte <-
923923
# write_csv(x = d_multidose_single_analyte, file = "2023-10-18-Project D files/Hands-on 2_Multiple dosing/multidose.csv")
924924
```
925925

926-
# Backup information
926+
# Day 2 of training session
927927

928928
# Control your data
929929

courses/2023-10-18-Project-D-training-session.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4232,7 +4232,7 @@ <h1 data-config-title><!-- populated from slide_config.json --></h1>
42324232
<li>Calculate NCA parameters of AUC<sub>int</sub>, C<sub>max</sub>, and T<sub>max</sub> on Day 1 and Day 6. And, calculate half-life on Day 6.</li>
42334233
</ol>
42344234

4235-
</article></slide><slide class="segue dark nobackground level1"><hgroup class = 'auto-fadein'><h2>Backup information</h2></hgroup><article id="backup-information">
4235+
</article></slide><slide class="segue dark nobackground level1"><hgroup class = 'auto-fadein'><h2>Day 2 of training session</h2></hgroup><article id="day-2-of-training-session">
42364236

42374237
</article></slide><slide class="segue dark nobackground level1"><hgroup class = 'auto-fadein'><h2>Control your data</h2></hgroup><article id="control-your-data">
42384238

0 commit comments

Comments
 (0)