-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit with one single dose dataset
- Loading branch information
0 parents
commit 5ddacdb
Showing
9 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.sublime-project | ||
.sublime-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Package: PKPDdatasets | ||
Type: Package | ||
Title: data sets for pharmacometric analysis and visualization | ||
Version: 0.1.0 | ||
Date: 2014-01-01 | ||
Authors@R: c(person("Devin", "Pastoor", role = c("aut", "cre"), | ||
email = "[email protected]")) | ||
Suggests: | ||
knitr | ||
VignetteBuilder: knitr | ||
Description: ctm-datasets provides a number of simulated datasets to provide | ||
pharmacokinetic, pharmacodynamic, and demographic data to allow for easy | ||
teaching, testing, and visualization. The primary driver is to allow for | ||
datasets (other than Theoph) to be readily available. A secondary purpose | ||
is to provide a foundation to allow for easily generated reproducible | ||
examples in pharmacometrics. | ||
LazyData: TRUE | ||
License: MIT |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Version: 1.0 | ||
|
||
RestoreWorkspace: Default | ||
SaveWorkspace: Default | ||
AlwaysSaveHistory: Default | ||
|
||
EnableCodeIndexing: Yes | ||
UseSpacesForTab: Yes | ||
NumSpacesForTab: 2 | ||
Encoding: UTF-8 | ||
|
||
RnwWeave: Sweave | ||
LaTeX: pdfLaTeX | ||
|
||
BuildType: Package | ||
PackageInstallArgs: --no-multiarch --with-keep.source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#' PKPDdatasets | ||
#' | ||
#' @name PKPDdatasets | ||
#' @docType package | ||
NULL | ||
|
||
#' One-compartment pharmacokinetic data given single oral dose | ||
#' | ||
#' A dataset containing dose, plasma concentration and time data, as well as | ||
#' demographic data of Age, Weight, Gender, and Race for each individual | ||
#' | ||
#' \itemize{ | ||
#' \item ID. Numerical ID (1--50) | ||
#' \item Time. Time in hours (0--24) | ||
#' \item Amt. Amount of drug given, time dependent, in milligrams | ||
#' \item Conc. Plasma concentration in mg/L | ||
#' \item Age. Age in years | ||
#' \item Weight. Weight in kg | ||
#' \item Gender. Male or Female gender identification | ||
#' \item Dose. Dose given to each individual in milligrams | ||
#' } | ||
#' | ||
#' @docType data | ||
#' @keywords datasets | ||
#' @name sd_oral_richpk | ||
#' @usage data(sd_oral_richpk) | ||
#' @format A data frame with 4300 rows and 9 variables | ||
NULL |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
\docType{package} | ||
\name{PKPDdatasets} | ||
\alias{PKPDdatasets} | ||
\alias{PKPDdatasets-package} | ||
\title{PKPDdatasets} | ||
\description{ | ||
PKPDdatasets | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
\docType{data} | ||
\name{sd_oral_richpk} | ||
\alias{sd_oral_richpk} | ||
\title{One-compartment pharmacokinetic data given single oral dose} | ||
\format{A data frame with 4300 rows and 9 variables} | ||
\usage{ | ||
data(sd_oral_richpk) | ||
} | ||
\description{ | ||
A dataset containing dose, plasma concentration and time | ||
data, as well as demographic data of Age, Weight, Gender, | ||
and Race for each individual | ||
} | ||
\details{ | ||
\itemize{ \item ID. Numerical ID (1--50) \item Time. Time | ||
in hours (0--24) \item Amt. Amount of drug given, time | ||
dependent, in milligrams \item Conc. Plasma concentration | ||
in mg/L \item Age. Age in years \item Weight. Weight in kg | ||
\item Gender. Male or Female gender identification \item | ||
Dose. Dose given to each individual in milligrams } | ||
} | ||
\keyword{datasets} | ||
|