-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/syntax-highlighting-update'
- Loading branch information
Showing
11 changed files
with
310 additions
and
54 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 @@ | ||
$DATA data1.csv | ||
IGNORE=# ;comment in $DATA | ||
IGN=(DOSE.GT.0) | ||
; Comment on a separate line | ||
|
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 @@ | ||
; Comment before $PROBLEM | ||
$PROBLEM base model ; problem_text |
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,22 @@ | ||
$DES | ||
|
||
INH_BSG = 1 ;BSG not in model yet | ||
|
||
;------ PKPD_BTP ------ | ||
; Inhibition of HB synthesis rate in newly produced RBC | ||
; (unobserved, before RBC release to the blood) | ||
TRT_BTP = TREAT_BTP | ||
IF(T > TEND_BTP) TRT_BTP = 0 | ||
INH_BTP = (1 - (TRT_BTP * (IMAX_BTP * DRUG**GAM_BTP) / (IC50_BTP**GAM_BTP + DRUG**GAM_BTP))) | ||
|
||
; Observed blood RBC, MCH, HB, and PRE | ||
PR = A(1) | ||
|
||
RT1 = A(2) | ||
RT2 = A(3) | ||
|
||
RT_IMM = A(4) | ||
RT_MAT = A(5) | ||
RT = RT_IMM + RT_MAT | ||
|
||
RC1 = A(6) |
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 @@ | ||
$PRED | ||
|
||
W = -.1E-01 | ||
V = -1E1 | ||
U = -2E+1 | ||
T = -3E-1 | ||
S = -4E(1) | ||
R = -5E(+1) | ||
Q = -6E(-1) | ||
P = .25**-.1E-01 | ||
O = (THETA(1)*EXP(ETA(1)))-EPS(1)**(-5) | ||
N = THETA(1)*EXP(ETA(1)) | ||
M = ERR(1) | ||
L = EPS(1) | ||
K = ETA(1) | ||
J = THETA(1) | ||
I = EXP(((0+1*2)/(3-4))**5-1) | ||
H = ((0+1*2)/(3-4))**5-1 | ||
G = (0+1*2)/(3-4) | ||
F = (1*2)/(3-4) | ||
E = (1*2)/3 | ||
D = 1*2/3 | ||
C = 1+2+3 | ||
B = 1+1 | ||
A = 1 | ||
|
||
; comment in $PRED | ||
Y = IPRED + EPS(1) |
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,66 @@ | ||
; Comment before $PROBLEM | ||
$PROBLEM base model ; problem_text | ||
$DATA data1.csv | ||
IGNORE=# ;comment in $DATA | ||
IGN=(DOSE.GT.0) | ||
; Comment on a separate line | ||
|
||
$INPUT ID TIME AMT WGT APGR DV | ||
EVID HT=DROP MDV | ||
|
||
$PRED | ||
|
||
IF (EVID.EQ.1) IPRED = THETA(1)*EXP(ETA(1)) | ||
|
||
IF (EVID.EQ.1) THEN | ||
IPRED = THETA(1)*EXP(ETA(1)) | ||
|
||
; AA = THETA(1)*EXP(ETA(1)) | ||
ELSEIF (EVID.EQ.2) THEN | ||
Y = IPRED + EPS(1) | ||
ELSE | ||
Y = IPRED | ||
ENDIF | ||
|
||
IF (EVID.EQ.1) THEN | ||
IPRED = THETA(1)*EXP(ETA(1)) | ||
Y = IPRED + EPS(1) | ||
ELSE | ||
IPRED = 0 | ||
Y = IPRED | ||
ENDIF | ||
|
||
W = -.1E-01 | ||
V = -1E1 | ||
U = -2E+1 | ||
T = -3E-1 | ||
S = -4E(1) | ||
R = -5E(+1) | ||
Q = -6E(-1) | ||
P = .25**-.1E-01 | ||
O = (THETA(1)*EXP(ETA(1)))-EPS(1)**(-5) | ||
N = THETA(1)*EXP(ETA(1)) | ||
M = ERR(1) | ||
L = EPS(1) | ||
K = ETA(1) | ||
J = THETA(1) | ||
I = EXP(((0+1*2)/(3-4))**5-1) | ||
H = ((0+1*2)/(3-4))**5-1 | ||
G = (0+1*2)/(3-4) | ||
F = (1*2)/(3-4) | ||
E = (1*2)/3 | ||
D = 1*2/3 | ||
C = 1+2+3 | ||
B = 1+1 | ||
A = 1 | ||
|
||
; comment in $PRED | ||
Y = IPRED + EPS(1) | ||
|
||
$THTA | ||
$OMEGA | ||
$SIGMA | ||
$ESTM | ||
$COVR | ||
$TAB | ||
; comment last |
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,21 @@ | ||
$PRED | ||
|
||
IF (EVID.EQ.1) IPRED = THETA(1)*EXP(ETA(1)) | ||
|
||
IF (EVID.EQ.1) THEN | ||
IPRED = THETA(1)*EXP(ETA(1)) | ||
|
||
; AA = THETA(1)*EXP(ETA(1)) | ||
ELSEIF (EVID.EQ.2) THEN | ||
Y = IPRED + EPS(1) | ||
ELSE | ||
Y = IPRED | ||
ENDIF | ||
|
||
IF (EVID.EQ.1) THEN | ||
IPRED = THETA(1)*EXP(ETA(1)) | ||
Y = IPRED + EPS(1) | ||
ELSE | ||
IPRED = 0 | ||
Y = IPRED | ||
ENDIF |