Skip to content

Commit

Permalink
Clarify Project D Day 2 slides; give answers for the hands-on exercises
Browse files Browse the repository at this point in the history
  • Loading branch information
billdenney committed Nov 20, 2023
1 parent 7917892 commit 8f03df2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions courses/2023-10-18-Project D-training-session-hands-on-hints.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,10 @@ as AUClast, Cmax, and Tmax.

```{r eval=FALSE, echo=FALSE}
library(PKNCA)
library(tidyverse)
d_conc <- read.csv("Hands-on 1_Whale PK/whale_conc.csv")
d_dose <- read.csv("Hands-on 1_Whale PK/whale_dose.csv")
d_conc <- read.csv("2023-10-18-Project D files/Hands-on 1_Whale PK/whale_conc.csv")
d_dose <- read.csv("2023-10-18-Project D files/Hands-on 1_Whale PK/whale_dose.csv")
head(d_conc)
head(d_dose)
Expand Down Expand Up @@ -292,9 +293,12 @@ o_conc <- PKNCAconc(data = d_conc, conc~time|Subject)
# with the correct arguments.
d_intervals <-
data.frame(
start =,
end =,
start = c(0, 120),
end = c(24, 144),
# insert the parameters to calculate here
aucint.inf.obs = TRUE,
cmax = TRUE,
tmax = TRUE
)
o_data <- PKNCAdata(o_conc, intervals = d_intervals)
o_nca <- pk.nca(o_data)
Expand Down
2 changes: 1 addition & 1 deletion courses/2023-10-18-Project D-training-session.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ d_multidose_single_analyte <-
# write_csv(x = d_multidose_single_analyte, file = "2023-10-18-Project D files/Hands-on 2_Multiple dosing/multidose.csv")
```

# Backup information
# Day 2 of training session

# Control your data

Expand Down
2 changes: 1 addition & 1 deletion courses/2023-10-18-Project-D-training-session.html
Original file line number Diff line number Diff line change
Expand Up @@ -4232,7 +4232,7 @@ <h1 data-config-title><!-- populated from slide_config.json --></h1>
<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>
</ol>

</article></slide><slide class="segue dark nobackground level1"><hgroup class = 'auto-fadein'><h2>Backup information</h2></hgroup><article id="backup-information">
</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">

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

Expand Down

0 comments on commit 8f03df2

Please sign in to comment.