Post

1CMT PK Model

1CMT PK Model

이 포스트는 1 컴파트먼트 모델을 설명합니다.

\(\frac{dA}{dt} = -\frac{CL}{V} \cdot A\)

1
2
3
4
model <- function(t, cl, v) {
  a <- dose * exp(-cl/v * t)
  return(a)
}
This post is licensed under CC BY 4.0 by the author.

Trending Tags