-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
89 lines (65 loc) · 2.49 KB
/
README.Rmd
File metadata and controls
89 lines (65 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file. Generate README.md with `devtools::build_readme()`. -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# mipdeval
<!-- badges: start -->
<!-- badges: end -->
The goal of mipdeval is to make it easy to evaluate predictive
performance of PK/PD models in historical datasets, in the context
of model-informed precision dosing (specifically Bayesian updating)
## Installation
Install the development version from [GitHub](https://github.com/InsightRX/mipdeval) with:
```r
# install.packages("pak")
pak::pak("InsightRX/mipdeval")
```
## Usage
```
run_eval(
model,
data
)
```
<!--
## Documentation
See at <pkgdown URL> and also in the installed package: `help(package = "mipdeval")`.
-->
## Roadmap
The `mipdeval` package is currently under development, and there will
likely be changes to core functionality in the upcoming months.
The following features are on our short-term roadmap:
- match functionality in PsN::proseval
- allow timebased weighting of historical data
- allow flattening of priors
- allow adjustment of residual error magnitude
- allow grouping of samples (e.g. peak/trough, or day-to-day forecasting)
## Contributing
We welcome input from the community:
- If you think you have encountered a bug, please [submit an issue](https://github.com/InsightRX/mipdeval/issues) on the GitHub
page. Please include a reproducible example of the unexpected behavior.
- Please [open a pull request](https://github.com/InsightRX/mipdeval/pulls)
if you have a fix or updates that would improve the package. If you're not sure
if your proposedchanges are useful or within scope of the package, feel free
to contact one of the authors of this package.
## Disclaimer
The functionality in this R package is provided "as is". While its authors
adhere to software development best practices, the software may still contain
unintended errors.
InsightRX Inc. and the authors of this package can not be held liable for any
damages resulting from any use of this software. By the use of this software
package, the user waives all warranties, expressed or implied, including any
warranties to the accuracy, quality or suitability of InsightRX for any
particular purpose, either medical or non-medical.
---
<div align="right">
© <img src="man/figures/insightrx_logo_color.png" alt="InsightRX logo" width="120" />
</div>