-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
50 lines (34 loc) · 1.27 KB
/
README.Rmd
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
---
title: "pmxpartabc"
author: Certara
date: February 1, 2022
output: md_document
---
[![experimental](http://badges.github.io/stability-badges/dist/experimental.svg)](http://github.com/badges/stability-badges)
# pmxpartabc
An R package for parameter estimate tables.
----
## Installation
This package is not yet on CRAN. To install the latest development version directly from GitHub:
``` r
require(remotes)
devtools::install_github("certara/pmxpartabc")
```
## Usage
```{r results='asis', warning = FALSE}
library(pmxpartabc)
output <- parframe2setup(run_dir = file.path(system.file(package = "pmxpartabc"), "examples"),
run_prefix = "run",
runno = "5",
bootstrap = TRUE,
run_dir.boot = file.path(system.file(package = "pmxpartabc"), "examples", "bootstrap_dir2"),
runno.boot = "5boot",
conf.level = 0.95,
min_suc = TRUE)
df <- parframe(out=output[[1]], meta=output[[2]], bootstrap = TRUE)
table <- pmxpartab(df,
meta = output[[2]],
columns=c(value="Estimate", boot.median = "Bootstrap Estimate", rse="RSE%", ci95="95%CI", shrinkage="Shrinkage")
)
print(table)
```